Find the square root of a number Find m so that m=sqrt(n) or...
Find the square root of a number Find m so that m=sqrt(n) or... m so that m2 = n or...
Find the square root of a number Find m so that m=sqrt(n) or... m so that m2 = n or... m so that m = n/m or...
Find the square root of a number Find m so that m=sqrt(n) or... m so that m2 = n or... m so that m = n/m or... m so that 2m = m + n/m or...
Find the square root of a number Find m so that m=sqrt(n) or... m so that m2 = n or... m so that m = n/m or... m so that 2m = m + n/m or... m so that m = (m + n/m)/2
Find the square root of a number Find m so that m=sqrt(n) or... m so that m2 = n or... m so that m = n/m or... m so that 2m = m + n/m or... m so that m = (m + n/m)/2 Algorithm: m = n; Repeat the following for as long as possible: m = (m + n/m)/2
Find the cube root of a number
Find the cube root of a number Find m so that m=curt(n) or... m so that m3 = n or... m so that m = n/m2 or... m so that 2m = m + n/m2 or... m so that m = (m + n/m2)/2 Algorithm: m = n; Repeat the following for as long as possible: m = (m + n/m2)/2