Math, asked by shashibhushan51392, 1 day ago

how to find root value of any number , for ex- root 2,3 etc​

Answers

Answered by sanapala2
0

Answer:

pls mark as brainlest

Step-by-step explanation:

√4 = 2

√9 = 3

√16 = 4

√25 = 5

here are some : )

Answered by uzmaqueen14
1

Step-by-step explanation:

is the Newton- Raphson iteration method

x = root(N)

then x^2 = N

f(x) = x^2 - N

f ' (x)= 2x

By Newton - Raphson's Formula

x(n+1)= x(n) - ( f ' ( x(n) ) / f( x(n) ) )

Substituting and simplifying, we will get the following:

x(n+1) = ( x(n)- ( N / x(n) ) )/2

Please tell me if there are any mistakes

You should get the answer by three iterations accurately

Similar questions