Categories
Further Mathematics Mathematics

Square Root Shortcuts, the Taylor Series, and Binomial Expansion

In the past few weeks I’ve come up with lots of new realisation of the topics thought to us in Maths.

I came across this square root shortcut video a year ago. It is a simple way of estimating a square root of a non-square number using square numbers that are close in value to it. It gets more accurate for larger numbers and if the nearest square numbers are more close.

Tl;Dw : To find a square root of a number, say 87, we find a square number closest to it, 81. We know sqrt(81) = 9. We take this value, and add a fraction consisting of the difference between the two numbers 87 and 81 over two times 9.

It sounds complicated, so I’ll notate it here:

87 81+878128187 9+61887 9.333

This allows for the formula:

x a+x2a22a

And as you can see, the estimated value is pretty close to the actual value.

87 =9.32737Estimated value: 9.33333

I was very curious why it worked. I derived a few methods:

IGCSE Level Method (Basic Level Algebra)

Let x be the square root we wish to find Let a be the small difference (fractional part)that when added to the known root k,their sum forms xx=(k+a)[1]x2=(k+a)2Consider the R.H.S.:(k+a)2=k2+2ak+a2(k+a)2k2+2akSince a is small, a2can be ignoredx2k2+2akRearranging the equation for a:x2k22akx2k22kaSubbing a back into equation [1]:x=k+axk+x2k22kPlugging our values in:k=9x2=87xk+x2k22kx9+878118x9.3333

A Level Maths Method 1 (Newton-Raphson Method for estimating roots)

We want to find the square root value x such that: k2+d=x2Where k2 is the square number with the known root k and d is the difference of the two squaresTo find the root of the equation: x2dk2=0

Let f(x)=x2dk2We could solve quadratically, but it would require square root calculations which we want to avoid.We can instead estimate using the Newton-Raphson method: f(x)=2xx1=x0f(x0)f(x0)Substitute k into x0 as value of k is close to the solution (which is x) x1=kk2dk22(k)=k+d2k

Plugging our values in:d=6k2=81x2=87k+d2k=9+618=9.333

A Level Maths Method (Binomial Series Expansion to non-integer/negative powers)

Let x be the square root we wish to find Let a be the difference between the known square number k2and x2x2=(k2+a)[1]Consider the R.H.S.:(k2+a)12=(k2(1+ak2))12= k(1+ak2)12Using the Binomial Series Expansion: k(1+12ak2+12(121)2!(ak2)2+12(121)(122)3!(ak2)3+)We can ignore terms of a2or more as they become increasingly smaller.Simplifying gets us: R.H.S =k(1+a2k2)=k+a2k

Plugging our values in:d=6k2=81k=9x2=87k+d2k=9+618=9.333

Further Pure Mathematics Method (Taylor Series Expansion)

Using the Taylor Series Expansion:f(x)=f(a)+f(a)1!(xa)+f(a)2!(xa)2+f(a)3!(xa)3+,

Let f(x)=x12Let x=(k2+d)x is the number whose square root we wish to find Let d be the difference between the known square number k2and xf(x)=(k2)12+12(k2)12(d)1!+14(k2)32(d)2!+38(k2)52(d)3!+,We take the first two terms and disregard the other smaller terms: f(x)(k2)12+12(k2)12(d)1!f(x)k+d2kPlugging our values in:d=6k2=81k=9x2=87k+d2k=9+618=9.333

At this point of research, I am intrigued by how similar the Taylor Series is similar to the binomial expansion formula (a+b)^n. Most of my understanding is credited to 3Blue1Brown, who has done an amazing video on the Taylor Series.

Back to my point, how does the Taylor Series relate to the binomial expansion? And because the Taylor Series an infinite series, why does binomial expansion terminate for positive integer power values, and not for negative non-integer power values? (This was a question I had while doing Pure Year 2)

Well, the secret lies in differentiation.

Back to the drawing board:

Using the Taylor Series Expansion:f(x)=f(a)+f(a)1!(xa)+f(a)2!(xa)2+f(a)3!(xa)3+Let:g(x)=x32h(x)=x3x=(a+b)

Here are their respective expansions:

g(x)=a32+32a121!(b)+34a122!(b2)+38a323!(b3)+h(x)=a3+3a21!(b)+6a12!(b2)+63!(b3)+

But hold on! Shouldn’t h(x) terminate?

It does: As powers of a decrease by 1, they should reach a^0, which is 1. Differentiating to any higher orders will return zero, so the expression terminates.

h(x)=a3+3a21!(b)+6a12!(b2)+63!(b3)+f(6)4!(b4)+f(6)5!(b5)+h(x)=a3+3a21!(b)+6a12!(b2)+63!(b3)+0(b4)+0(b5)+

Looking at g(x), when the power of the function becomes negative, it keeps on differentiating infinitely. It could start off being positive, but if the function power is a non-integer, differentiating it causes it to skip past 0 from positive to negative, so and it goes on differentiating infinitely as well.

The Taylor Series is a vital tool for physics and engineering where we can replace difficult-to-calculate functions with simpler estimations. I will cover such examples in a future blog post!