Calculate 1 to 100 Square in few seconds

The 1 to 100 square method is a mathematical formula for finding the square of any number from 1 to 100. The formula is: (n+50)2−2500=n2+100n.

I came across a youtube lesson by Navneet Tiwari where he explained how to calculate Square of any number from 26 to 100 using two methods I wanted to know what range of these methods so I wrote a python program to test it. to my surprises , both method work on any number I tested from 200 to…

Read More