Showing posts with label cut. Show all posts
Showing posts with label cut. Show all posts

Friday, September 18, 2015

Short cut cubing of any three digit number just in few seconds with help of Horner`s method for polynomial evaluation


We can utilize following algebraic expansion of Horner`s method for polynomial evaluation to easily find cube of any three digit number
(z + d) 3 = z x [z x (z + 3d) + 3d2] + d3
Where, d will always be one of the numbers between (+/-) 1 to (+/-) 50.
For example,
To find cube of the number 323,
Let, z = 300 and d = 23
So,
(z + d) 3 = z x [z x (z + 3d) + 3d2] + d3
(300 + (23)) 3 = 300 x [300 x (300 + 3(23)) + 3(23)2] + (23)3
(323)3 = 300 x [300 x (300 + 69) + 3(23)2] + (23)3
= 300 x [300 x 369 + 3(23)2] + (23)3
= 300 x [300 x 369 + 1587] + (23)3
= 300 x [110700 + 1587] + (23)3
= 300 x 112287 + (23)3
= 33686100 + 12167
= 33698267

Thursday, September 17, 2015

Short cut cubing of any two digit number just in few seconds with help of Horner`s method for polynomial evaluation


We can utilize following algebraic expansion of Horner`s method for polynomial evaluation to easily find cube of any two digit number
(z + d) 3 = z x [z x (z + 3d) + 3d2] + d3
Where, d will always be one of the numbers (+/-)1, (+/-)2, (+/-)3, (+/-)4, (+/-)5.
So, 3d2 will always be one of the numbers 3, 12, 27, 48, or 75.
For example,
To find cube of the number 23,
Let, z = 20 and d = 3
So,
(z + d) 3 = z x [z x (z + 3d) + 3d2] + d3
(20 + 3)3 = 20 x [20 x (20 + 3(3)) + 3(3)2] + (3)3
(23)3 = 20 x [20 x (20 + 9) + 27] + (3)3
= 20 x [20 x 29 + 27] + (3)3
= 20 x [580 + 27] + (3)3
= 20 x 607 + (3)3
= 12140 + 27
= 12167
Another example,
To find cube of the number 88,
Let, z = 90 and d = (-2)
So,
(z + d) 3 = z x [z x (z + 3d) + 3d2] + d3
(90 + (-2)) 3 = 90 x [90 x (90 + 3(-2)) + 3(-2)2] + (-2)3
(88)3 = 90 x [90 x (90 + (-6)) + 12] + (-2)3
= 90 x [90 x 84 + 12] + (-2)3
= 90 x [7560 + 12] + (-2)3
= 90 x 7572 + (-2)3
= 681480 + (-8)
= 681472

Wednesday, September 16, 2015

Short cut cubing of any two digit number just in few seconds with help of algebraic identity


We can utilize following algebraic identity to easily find cube of any two digit number
A3 = (A - d) x A x (A + d) + d2 x A
Where, d = any assumed value to easily compute cube.
Naturally, this formula works for any value of d, but we choose d to be the distance to a number close to A that is easy to multiply.
For example,
To find cube of the number 23,
Let, d = 3, A = 23
So,
A3 = (A - d) x A x (A + d) + d2 x A
= (23 - 3) x 23 x (23 + 3) + (3)2 x 23
= 20 x 23 x 26 + (3)2 x 23
= 20 x 598 + 9 x 23
= 11960 + 207
= 12167

Sunday, September 13, 2015

Short cut squaring of any three digit number just in few seconds with help of algebraic identity


We can utilize following algebraic identity to easily find square of any three digit number
A2 = (A - d) x (A + d) + d2
Where, d = any assumed value to easily compute square.
We can quickly square three-digit numbers by rounding up and down to the nearest hundred. 
For example,
To find square of the number 223,
Let, d = 23, A = 223
So,
A2 = (A - d) x (A + d) + d2
= (223 - 23) x (223 + 23) + (23)2
= 200 x 246 + 529
= 49200 + 529
             = 49729

Saturday, September 12, 2015

Short cut squaring of any two digit number just in few seconds with help of algebraic identity


We can utilize following algebraic identity to easily find square of any two digit number
A2 = (A - d) x (A + d) + d2
Where, d = any assumed value to easily compute square.
Naturally, this formula works for any value of d, but we choose d to be the distance to a number close to A that is easy to multiply. 
For example,
To find square of the number 23,
Let, d = 3, A = 23
So,
A2 = (A - d) x (A + d) + d2
= (23 - 3) x (23 + 3) + (3)2
= 20 x 26 + 9
= 520 + 9
= 529
Another example,
To find square of the number 48,
Let, d = 2, A = 48
So,
A2 = (A - d) x (A + d) + d2
= (48 - 2) x (48 + 2) + (2)2
= 46 x 50 + 4
= 2300 + 4
= 2304