How do you find the square root of 193?

1 Answer
Aug 30, 2016

19313.8924439894498 is an irrational number.

We can find approximations to it using a Newton Raphson method.

Explanation:

193 is a prime number, so its square root does not have any simpler form. It is an irrational number a little less than 14 (since 142=196). That is, it is not expressible in the form pq for any integers p,q.

We can find approximations to it using a kind of Newton Raphson method.

Given a number n and an initial approximation a0 to n, derive progressively more accurate approximations by using the formula:

ai+1=a2i+n2ai

I like to reformulate this slightly using integers pi and qi where ai=piqi. Then use these formulae to iterate:

pi+1=p2i+nq2i

qi+1=2piqi

If the resulting pi+1 and qi+1 have a common factor, then divide both by that factor before the next iteration.

Let n=193, p0=14 and q0=1

Then:

p1=p20+nq20=142+19312=196+193=389

q1=2p0q0=214+1=28

If we stopped here then we would have:

19338928=13.89¯¯¯¯¯¯¯¯¯¯¯¯285714

Next iteration:

p2=p21=nq21=3892+193282=151321+151312=302633

q2=2p1q1=238928=21784

So:

1933026332178413.892444

Actually:

19313.8924439894498

but as you can see this method converges quite rapidly.