@@dollyrupadevich4145 why u saying thank you lmfao
@xiaoshen1942 жыл бұрын
It's crazy how U still remember that algorithm from 1876!! Good memory 👍👍
@yashasgupta85082 жыл бұрын
@@sahilverma136 lol true
@freddier472 жыл бұрын
@@sahilverma136 you've missed the joke
@xiaoshen1942 жыл бұрын
@@sahilverma136 tujhe joke nhi chamka bro😕😐
@sahilverma1362 жыл бұрын
@@xiaoshen194 what kind of joke?
@applmango2 жыл бұрын
@@sahilverma136 How would Presh *remember* an algoritm from 1876 when he wasn't alive? You completely missed the joke...
@laurendoe1682 жыл бұрын
As you mentioned... this works only on perfect squares. These get less and less frequent as the numbers get larger. Perfect squares are 10% of all integers between 0 and 99, but only 5% of all integers between 100 and 199, and only 3% between 200 and 299... and this percentage gets worse and worse. Clever technique, but its use is severely limited.
@tonybarfridge43692 жыл бұрын
With a different method u can find the square root of any number, and at the same time discover if it is a whole square
@lukas-po8yn2 жыл бұрын
True, but this is very useful for tests, since if you get a question asking for the square root of a number, chances are it’ll be a perfect square if it’s a non-calculator test. Not the most practical overall, but I don’t think that’s the point of the algorithm.
@tonybarfridge43692 жыл бұрын
@@lukas-po8yn of course 😄
@ikigu2 жыл бұрын
@Lauren Doe Do you have a better technique?
@laurendoe1682 жыл бұрын
@@ikigu yes.... a calculator. They really are ubiquitous now.
@ayanoaman3179 Жыл бұрын
this is incredible!! I've always asked my teachers if there was a way to calculate roots by hand but they always just told me about using trial-and-error division. I love mental math and I love knowing the problems inside out
@iqramohamed. Жыл бұрын
Completely agree
@tonyknight9912 Жыл бұрын
You can always use logs.
@kayleechristensen8575 Жыл бұрын
How?
@skmd.imrulhaquesakkhor4814 Жыл бұрын
Same
@VishnuSrigiriraju Жыл бұрын
There’s a method called long division, but that’s really confusing
@eowmob2 жыл бұрын
About 40 years ago, when I was in school, our math teacher got mad we weren't able to see simple squares like 169=13^2 . So she ordered us (and checked each one of us individ.) to learn 1..25^2 by heart. I hated memorizing tables or dates, but I had one of those 38-sth program steps programmable calculators (in 2 programs, could only loop to the start of it, only one cond. jump, max. 7 variables etc..). I managed to code a small program asking random perfect squares in a given range, counting how many sqrt you guessed right and how many you were asked for. After a short time 1..25 was no challenge anymore, so I went to 1..100. It caused a mass hysteria in our class: Many kids asked me for the code, bought a compat. calculator (there were 1 or 2 cheaper models that could still run the same code (but lacked some statistics functions)), some even asked me to enter the code for them. In every break pupils sat there solving 1..100^2 squares challenging each other for sqrt/time (you had to stop the time on a sep watch, the calc couldn't do it.). Since then I'll never forget any of the smaller squares, and yes, we developed a similar sense for sqrt at that time, even though not that formalized. And, on that calc, I really learned efficient coding with what you had. Thank you for bringing up this pleasant memory of my past.
@Elliamy012 жыл бұрын
That sounds insanely cool. Props for making that back then!
@anandk92202 жыл бұрын
@@Elliamy01 Just for info that I'm an Indian, IB/IGCSE And Indian Curriculum Math Teacher by profession. I don't know what this person has said in the video. Here's the best trick : TO FIND PERFECT SQUARE, CUBE OR Nth POWER OF ANY NUMBER : Just split the number into TWO parts in terms of place value, assume first part as A & second as B, and then use (A + B)^2 expansion. Example - 83 = 80 + 3 A = 80, B = 3 So, 83^2 = (80 + 3)^2 = 80^2 + 2 × 80 × 3 + 3^2 = 6400 + 480 + 9 = 6889 Similarly, 137^2 = (130 + 7)^2 = 130^2 + 2 × 130 × 7 + 7^2 = 16900 + 1820 + 49 = 18769 Similarly it's possible to calculate cubes and higher powers of ANY number using the binomial expansion (using Pascal triangle coefficients). TO FIND SQUARE ROOT/ CUBE ROOT OF ANY PERFECT SQUARE/ CUBE : By the way, all those who don't know this, there is an amazing 2 to 5 second technique to find square root of any perfect square, preferably a smaller number. Note that every group of two digits from right (starting from unit's place) to left will contribute to ONE digit in the square root (You can append 0 to highest place value as and when needed to complete two-digit group). Example - Square Root of 57121 1. Focus on unit's place and analyze the unit's place of square root (either 1 or 9, as both 1×1 and 9×9 ends with 1) 2. Temporarily leave the LAST TWO digits and focus on the remaining part of number. (In this case 571) Now locate this remaining number between two perfect squares. (In this case, 571 lies between 529 = 23 squared and 576 = 24 squared) 3. Since 571 is closest to 576, the square root must be closer to 240. Hence, Square Root of 57121 = 239 All dear friends, in case you are or want to be better at calculations, I'd like to share an app with you. Do try the 'Math Tricks' app by Antoni Ion from Google Play Store. Extremely good brains can try 'To The Bitter End' mode wherein they even ask 1885 squared and stuff at higher levels. [ Note : I tried 'To The Bitter End' mode many times and after reaching 163 to 165 levels, I accidentally pressed back button mostly everytime to wash away my hardwork. Finally with tons of patience, I strongly fought for 4 straight hours or more and completed 204 levels and then happily declared my calculation innings and stopped there ! ] 😂😄 You may also try Hard Math Game by marcin.magician from Google Play Store and reply your experience. In case you're interested in solving Math puzzles, do visit contestcen.com and go to Site Map (with various puzzle pages like Digits, Easy Math, Tough, Harder, Geometry, Convergence, Primes, Squares and Powers etc.) Highly skilled and interested minds, do visit contestcen.com/geom.htm and try the following questions - 1. Circles in a Square 2. 4 Tangents 3. 5 Spheres 4. TetraSpheres Thank you. Love you all. 😙😙😙
@Oscar-vs5yw2 жыл бұрын
Wow that sounds cool! I did the same thing except on a school Chromebook (was only 10 lines in python), much easier than what you did back then
@Alalpog2 жыл бұрын
You sir are amazing!
@eowmob2 жыл бұрын
@all. Ah, I'm flattered, that's just too much honour. It was just something a curious teen fascinated by math and the idea of coding did. But surely the math teacher and calculator inspired me and formed my later life. Years later I got a phd in maths at computer algebra / representation theory, did some years of math research, now work in IT-security (research jobs are badly funded and create a bunch of personal/family restraints)
@realitydisillusioned15442 жыл бұрын
The square root of 11.56 is actually a lot easier to calculate. 11.56=1156/100=289/25 The square root of the denominator is apparently 5, whereas the square root of the numerator is 17. Therefore, the square root of 11.56 is 17/5, which is 3.4.
@amtj85732 жыл бұрын
kinda cool
@manog87132 жыл бұрын
or even easier in this case anyway: the square root must be less than 4 and greater than3. Since we know there is an exact answer, the nswer can only be 3.6 or 3.4; we then try each of these and seet 3.4 is the correct one. The best method is one to work for a whole range of numbers where the earier methods may not work.
@annathegirlboss48862 жыл бұрын
That’s what I was thinking too
@swng3142 жыл бұрын
it feels "lucky" that it just so happens that the fraction reduced to lowest terms just so happens to have perfect square numerator and denominator
@realitydisillusioned15442 жыл бұрын
@@swng314 I think it is because the number is aimed to be a perfect square so that the number could be somehow reduced. If the number is a perfect square in the beginning, turning it into a fraction apparently yields a perfect square denominator, which is 100, and thus a resulting perfect square numerator. In other words, if the number is a perfect square number with even digits after the decimal point, it should be well reduced using this method (turning it into a fraction).
@squirlz3332 жыл бұрын
Another tip here to figure out the two options for squares that you have on the right is that the two numbers must add up to 10, 1&9, 2&8, 3&7 4&6, 5&5. So you only really need to remember 2 ends in 4, 3 ends in 9 and 4 ends in 6. 0, 1 and 5 all end in themselves. Cube also has a similarity where the last number on the opposite end of the 5 adds up to it's compliment i.e 2 ends in 8 which means 8 ends in 2 because 8+2 equals 10. Same with 4 ends in 4 so 6 must end in 6. So once again you only need to know 2 ends in 8, 3 ends in 7 and 4 ends in 4 with it's compliment on the other side.
@sarimshabbir9742 Жыл бұрын
thanks man
@wafiqahmed9394 Жыл бұрын
Thanks bro you just saved me from confusion
@kerynwoolmer72889 ай бұрын
What if you have a number that ends in 2,3,7 or 8?
@DropletsOfYakobii9 ай бұрын
damn, thanks.
@Tahira2006Ай бұрын
@@kerynwoolmer7288 Then, it won't be a perfect square, and you'd have to calculate it by long division.
@GrimacesGameNuggets2 жыл бұрын
The intended method for the exam question would be to express the number 11.56 as a fraction (1156/100 -> 289/25) then take the square root of the numerator and denominator (17/5). Solving that fraction gives the answer of 3.4, just like how the first part of the question is calculated. The perfect square method shown here is too specific to be useful in practice.
@sharpnova22 жыл бұрын
you are correct. but this channel never admits when it does things wrong or poorly.
@DunderKlomp2 жыл бұрын
Of course that was the intended method, but the intended purpose of this video is to show you how problems used to be done prior to the invention of calculators. Case in point, many people don’t know that 289 is the square of 17. This approach is great to develop a ‘feel’ for squares and cubes, and to quickly ‘guess’ the answer. (289 ends in 9, so the root has to end in 7 or 3, so it’s 13 or 17)
@tonybarfridge43692 жыл бұрын
The square root can be found in the same way as with a whole number; just include the decimal point. Calculating 34 as the square root of 1156, then the root of 11.56 is 3.4; in reverse 1.5^2 is 15^2=225, so 2.25 is the answer, or 1.3^2= 1.69, 1.4^2=1.96, 2.2^2=4.84, 3.5^2=12.25 If u don't know the squares tables u can use IE 32^2= 30^2=900, +3x2x2x10+2^2 [124]= 1024 or 30^2 + 2x(30+32) or 3^2/3x2x2/2^2= 9/12/4=10/2/4. When squaring decimals double the decimal digits, and halve for roots
@GlorifiedTruth2 жыл бұрын
@@DunderKlomp Thank you! This is so obvious that it saddens me it needs to be stated. The fact the original comment got so many upvotes just shows how susceptible KZbinrs are for any comment stated authoritatively. (I'm not bashing the original commenter here, whose basic point is correct. It's just not particularly relevant.)
@biffbidderman81642 жыл бұрын
@@DunderKlomp Meanwhile here in India we still don't use calculators
@TopWorldTalentHD2 жыл бұрын
Thanks!
@maybefunny31962 жыл бұрын
Ur welcome
@TopWorldTalentHD2 жыл бұрын
@@maybefunny3196 😂😂😂
@CoronaLisaa2 жыл бұрын
@@cottoncandycloudsart bc they donated 2 dollars….. duh
@TopWorldTalentHD2 жыл бұрын
@@CoronaLisaa It was a test😂😂Next time I try $5 and see how many likes I can get.
@sy-22 жыл бұрын
@@TopWorldTalentHD then you're basically a verified bot jk
@iikpsyt4619 Жыл бұрын
You just saved me from my destined doom of failing tomorrow’s math test. Thank you! I appreciate the hard work you put into your videos.
@thomgizziz Жыл бұрын
no because it can only calculate roots where the answer is a whole number... it comes out with wrong numbers if the answer has decimals.
@felipeaugusto2600 Жыл бұрын
News on the test???
@sandergustavmichel1217 Жыл бұрын
So what happend?
@innocentsupra Жыл бұрын
I guess we'll never know...
@gideon4942 Жыл бұрын
Bruh what test is asking you to calculate square roots in your head??
@bigJovialJon2 жыл бұрын
It seems to me it's easier to start on the left (hundred's and thousand's places). 1156 is between 900 and 1600, so the answer is between 30 and 40. It's closer to 30 since 1156 is below 1225 (35 squared). The one's digit of 1156 is 6, so try 4 as the one's digit of the root. 34 * 34 = 900 + 2*120 + 16 = 1156. That method also helps you narrow down square roots of numbers that aren't perfect squares.
@siliconvalley5772 жыл бұрын
@@JustAnotherCommenter 69=35+34, is the difference between 35^2 and 34^2, same for any consecutive squares
@joao-m4rcos2 жыл бұрын
@@tonybarfridge4369 Do u know any QUICK method to know if a number is a perfect square? I just know verify it by prime factorization.
@tonybarfridge43692 жыл бұрын
@@joao-m4rcos The square below and above the number can be quickly narrowed down, from which it becomes clear. To be more precise IE SR 46 is closest to 7 and becomes 7- 3/(7x2)= 3/14= .21, 7- .21= 6.79
@varaprasad92 жыл бұрын
kzbin.info/www/bejne/on22c6CAZZihnrM
@herbertlong39812 жыл бұрын
You know it is very easy to learn a simple method to evolve the sqrt of ANY number at all, perfect square or not. It wont matter. All you are doing is trying to find square roots by multiplying numbers together until you happen upon the sqrt, This is a rather hilariously naive way to find square roots For 1156. Start at the dec point and divide in groups of 2: 11 56. Put a line over the top -- this is a long division process, so make it look like one. What is the sqrt of 11? It is 3. Put it above the line in your LD configuration, this is the first digit of your root. Square the 3 and put the 9 under the 11and subtract . You get 2 Bring down the next group of 2, which is 56. So your new remainder is 256. In a workspace beside the LD configuration, multiply (3) your current root by 20 = 60. This is your new divisor. 60 goes into 256 4 times. Add 4 to the 60, multiply by the 4 = 256. Put under the 256, subtract. you get 0. You are done because this is a perfect square You could have been trying to find the root of, say, 1186. You can use the above process to find the answer to any amount of digits you require, and quite quickly. Just did it, I got the answer to 5 digits in less than 2 minutes. You wont, with your method, find the answer to 5 digits in ANY amount of time, because your method cant do that Just learn a method to find sqrt of ANY number. Period. It is very fast, simple and it will take about 1 minute to learn the process, and it is so simple you will remember it forever. Being able to find the sqrt of only perfect squares is a perfectly useless talent You can also teach yourself the find cube roots this way.
@Sith_Kermit Жыл бұрын
Dude I did this in my math class and the kid that sat next to me called me a human calculator for the rest of the year😂
@deepasshetty57128 ай бұрын
This video became helpful to me . As i am in 7th in "Triangles and its properties" lesson our NCERT math text book gave examples to find square number but they didn't gave examples to find square root number so i couldn't understand how to find ans using Pythagoras theorem. Then i saw ur video which gave many such examples which taught me very understandable and cleared my doubts. Ur speaking is also very clear and understandable.
@PixelionRules2 жыл бұрын
This is known as Estimation Method, still taught in my school- We take the numbers in pairs and find the closest root, combine them and form an estimated root.
@PixelionRules2 жыл бұрын
@Dark nope, you do it from the left in that case For example if there's just one number over there, you find out if it's greater than 1² or 2² or 3², you have put the number smaller than the number. For example, if there's a number 1089, The first two numbers can be paired. 3² is smaller than 10, so we put 3 aside and cut off 10. Now 89 is left. We add the first number we put aside, ie, 3. Now we need to figure out a number 6_ × _ = 89 The number in the blanks must be same In this case, 63×3=89, so we put another 3 aside So this makes √1089=33
@PixelionRules2 жыл бұрын
@Dark As for what you had asked, consider 10201 (we all know it's a square of 101) Let's try solving this. We pair 1, 02 and 01 First number is 1, which is equal to 1², so we put 1 aside We will add 1+1=2 However, now there is no number to satisfy this 2_×_=02, so we put 0 in the blanks Now we put 0 aside Now we bring 20+0 down (we do not add the whole number, we only add the blank space number from the second step) That makes its 20_×_=201 (because we could not do it, we bring down two too) Now we know 201×1=201, so there goes another 1 and we put it aside That makes √10201=101
@PixelionRules2 жыл бұрын
@Dark np :)
@varaprasad92 жыл бұрын
kzbin.info/www/bejne/on22c6CAZZihnrM
@cuckyoin34712 жыл бұрын
Yess same heree
@Robi20092 жыл бұрын
I don't know what's more amazing: this method or fact we have MIT admission questions from nearly 150 years ago 🤔
@anandk92202 жыл бұрын
Just for info that I'm an Indian, IB/IGCSE And Indian Curriculum Math Teacher by profession. I don't know what this person has said in the video. Here's the best trick : TO FIND PERFECT SQUARE, CUBE OR Nth POWER OF ANY NUMBER : Just split the number into TWO parts in terms of place value, assume first part as A & second as B, and then use (A + B)^2 expansion. Example - 83 = 80 + 3 A = 80, B = 3 So, 83^2 = (80 + 3)^2 = 80^2 + 2 × 80 × 3 + 3^2 = 6400 + 480 + 9 = 6889 Similarly, 137^2 = (130 + 7)^2 = 130^2 + 2 × 130 × 7 + 7^2 = 16900 + 1820 + 49 = 18769 Similarly it's possible to calculate cubes and higher powers of ANY number using the binomial expansion (using Pascal triangle coefficients). TO FIND SQUARE ROOT/ CUBE ROOT OF ANY PERFECT SQUARE/ CUBE : By the way, all those who don't know this, there is an amazing 2 to 5 second technique to find square root of any perfect square, preferably a smaller number. Note that every group of two digits from right (starting from unit's place) to left will contribute to ONE digit in the square root (You can append 0 to highest place value as and when needed to complete two-digit group). Example - Square Root of 57121 1. Focus on unit's place and analyze the unit's place of square root (either 1 or 9, as both 1×1 and 9×9 ends with 1) 2. Temporarily leave the LAST TWO digits and focus on the remaining part of number. (In this case 571) Now locate this remaining number between two perfect squares. (In this case, 571 lies between 529 = 23 squared and 576 = 24 squared) 3. Since 571 is closest to 576, the square root must be closer to 240. Hence, Square Root of 57121 = 239 All dear friends, in case you are or want to be better at calculations, I'd like to share an app with you. Do try the 'Math Tricks' app by Antoni Ion from Google Play Store. Extremely good brains can try 'To The Bitter End' mode wherein they even ask 1885 squared and stuff at higher levels. [ Note : I tried 'To The Bitter End' mode many times and after reaching 163 to 165 levels, I accidentally pressed back button mostly everytime to wash away my hardwork. Finally with tons of patience, I strongly fought for 4 straight hours or more and completed 204 levels and then happily declared my calculation innings and stopped there ! ] 😂😄 You may also try Hard Math Game by marcin.magician from Google Play Store and reply your experience. In case you're interested in solving Math puzzles, do visit contestcen.com and go to Site Map (with various puzzle pages like Digits, Easy Math, Tough, Harder, Geometry, Convergence, Primes, Squares and Powers etc.) Highly skilled and interested minds, do visit contestcen.com/geom.htm and try the following questions - 1. Circles in a Square 2. 4 Tangents 3. 5 Spheres 4. TetraSpheres Thank you. Love you all. 😙😙😙
@bhavishyasharma78342 жыл бұрын
MIT,Oxford, Harvard, all these are very old universities, 200 or 300 years ago
@Robi20092 жыл бұрын
@@bhavishyasharma7834 duh, I know, but I didn't realize they keep their records for so long Btw Oxford is way older than that, it's over 800 y old.
@bobon1232 жыл бұрын
@@Robi2009 And not the oldest either, the first University is Bologna. And we have tests to become civil servant in China (the Imperial examination) from almost 2000 years ago.
@sorsocksfake Жыл бұрын
Nice! I had most of it (calculate the first digit's range, then pick the second digit's options) but beyond that I just had to try it. Which in fairness is quite doable with two-digit numbers, and 80% of the time it's an easy guess which it'll be anyway. 4 and 6 aren't always intuitive though. The x5 trick does make this faster and more secure
@TolaseRichard Жыл бұрын
b
@olegmoki Жыл бұрын
b
@shootboomzap2 жыл бұрын
As someone who loves math but was born in an era of calculators, I was never taught this method at school. Still, this is a really cool thing to learn and know
@spookysomeone Жыл бұрын
yeah! i always found it really frustrating when teachers just offered the guess-and-check method. i wanted to know how to actually do it, but they never gave an answer.
@maheshpatil-yl7pu11 ай бұрын
Wow ur a legend that u love math😂😂😂😂😂👏🏻👏🏻🙌🏻🙌🏻🙌🏻👏🏻👏🏻👏🏻
@XYZX-x5c10 ай бұрын
As another math lover, I'm torn between being happy and sad that in our country, majority exams don't allow calculators
@valquirit76062 жыл бұрын
I already knew the method for cubic roots, though i had no idea it could be extended to square roots. Really nice piece of knowledge
@concretemathematics81462 жыл бұрын
It’s crazy how easy to solve any square root problem (even cube root problem) with this easy approach. Thumbs up and my greatest salute to all the mathematicians from old days.
@JuniorDjjrMixMods2 жыл бұрын
"any", it was said ONLY perfect squares. Only 10% of the numbers from 0 to 99 are perfect squares, only 5% from 100 to 199 etc. It works for just a few numbers.
@37rainman2 жыл бұрын
Sorry, but obviously it is a totally useless trick. Might be useful for a 7 year old to impress a not to bright mother for around 30 minutes maybe
@guessundheit64942 жыл бұрын
This can also be solved with remembering landmarks. 841 is nearly 900 (30^2). 900-841=59, approximately 30x2, so 29^2. 1024 (32^2) is close to 1156. 1156-1024=132, approximately 4x32, thus 1156=34^2. 3969 is nearly 4000. (400x10)^0.5=20x3.16=63. 16384? Who doesn't know their binary? (1600x10)^0.5=40x3.16=126. 16384 is larger than 16000, so the last digit is 8, or 128. 39304? 3^3=27, and 11^3=1331. 33^3=35937. 39304 ends in 4, so it's 34. My method looks more complicated than the video's example, but this can apply to finding ~any~ cube root, not just exact roots.
@varaprasad92 жыл бұрын
kzbin.info/www/bejne/on22c6CAZZihnrM
@thanmayee.s82442 жыл бұрын
Awesome, I understood it!!😊👍
@bhaskarreddymeda98183 ай бұрын
Wth is this
@neilgamer52902 ай бұрын
4:06 we could also check the factors. 21 is divisible by 3, but 841 isn’t: 8+4+1=13. Thus, the answer would be 29* *=2.
@Arob43432 жыл бұрын
One of my favorite videos, that you’ve made. If I was still in school, this would be incredibly useful. But now, it’s just really cool to know
@varaprasad92 жыл бұрын
kzbin.info/www/bejne/on22c6CAZZihnrM
@kirillzakharov73362 жыл бұрын
One thing to note is that each time, the difference between two following perfect squares increases by two. And it's always odd. 0 1 4 9 16 25 36 etc. And this continues even from 729 (27^2), to 784 (28^2). The difference between them is 55. Then, to from 784 to 841 (29^2), the difference is 57.
@molibdenum2 жыл бұрын
This is true, because the difference n^2 - (n - 1)^2 = 2n - 1, and the difference (n + 1)^2 - n^2 = 2n + 1, so the increase = (2n + 1) - (2n - 1) = 2. And the odd part can be seen from the fact that 2n ± 1 is always odd.
@kirillzakharov73362 жыл бұрын
@Zeniat Haroun and the difference between perfect cubes always increases by 6
@furkanbekgoz52572 жыл бұрын
I know it's a bit late but i wanted to comment. Your method is basically (x+1)*(x-1) which is x^2 - 1. It also helps at pythagorean problems. It made me feel very clever back then I was at middle school but now im at university and I lost all interest with math :( ...
@kirillzakharov73362 жыл бұрын
@@furkanbekgoz5257 damn I first figured that out in freshman year. nice
@kwilson5832 Жыл бұрын
I think it's worth considering why this is true. Imagine drawing a 3 x 3 square on a piece of paper. There are now 9 small squares contained in this 3x3 grid. If you want to change it to a 4x4 grid, you would add four squares to the right of the grid (three to the right of the three already in the grid, and one below), then three more squares underneath to complete the square. So in total, you've added 7 squares. If you want to extend it again, you would add five squares to the right (that's one more than before) and four underneath (that's also one more than before). You're always adding an odd number and an even number of squares, so the total squares added is odd, and two more squares than you added the previous time.
@TE5LA-GAMING2 жыл бұрын
4:50 You can also just take the 2 and multiply it by the next higher number 3: 2x3=6 and compare the remaining 8 in 841 to 6. If it's higher, you use the higher number (9). If it's lower, use the lower number (1). 8 is greater than 6, so the number is 9.
@Vadoseharpy30252 жыл бұрын
I actually use both of this methods and they are phenomenal and can help you in a pinch. You can also do this with other odd roots like, 5, 7, 9 and so forth. Even numbers are harder especially 4th root since they have numbers that end with either 6 or 1 and finding a way to differentiate that with other numbers are hard.
@varaprasad92 жыл бұрын
kzbin.info/www/bejne/on22c6CAZZihnrM
@make-a-wish22242 жыл бұрын
Why can't i get the square root of 1091 with This number??
@patriciamaher5972 жыл бұрын
@@make-a-wish2224 Because 1091 is not a perfect square
@miantony64932 жыл бұрын
I recommend this maths problem . This guy is crazy applied a method that I have seen before in KZbin . kzbin.info/www/bejne/sGOyqol_f9-hftk
@archimedesmaid36022 жыл бұрын
@@patriciamaher597 And that is why this method is worthless, and why it isnt taught in schools. You can, in the time it took to watch this vid, learn a simple method to calc the sqrt of 1091 to any accuracy you might desire What is the sqrt of 10? How easy is it to multiply that number by 20? How easy is it to add a single digit to that result? How easy is it to multiply that result by the same single digit? How easy is it to subtract that result from the current remainder? Can you handle this?
@johnmcclain38872 жыл бұрын
I've had problems in math all my life, being dyslexic, but have worked in technology despite the problems. This has been a very interesting exercise in square and cube roots, I wish I'd learned in my days in school so long ago. Thanks for showing this means.
@archimedesmaid36022 жыл бұрын
You wernt taught this in school, because the ability to calc the sqrt and cuberoot of perfect squares and cubes cannot be used for anything real.
@LunarMoth Жыл бұрын
@@archimedesmaid3602 Depends on your area
@kaylansaravanapavan77182 жыл бұрын
That is actually so fascinating. I never would have thought that
@p.zansei32802 жыл бұрын
Presh you never cease to amaze me with the logic videos, but learning shorthands like these blew my mind. Please teach more techniques like these for math and logic!
@varaprasad92 жыл бұрын
kzbin.info/www/bejne/on22c6CAZZihnrM
@lEvElsh Жыл бұрын
I genuinely thank you for teaching me this method, old, but gold. It also encourages me to learn math😊
@けいけい2 жыл бұрын
I’m from Japan. I was stuck in with this problem. Thank you for a good explanation!!
@KCKingcollin2 жыл бұрын
Some people laugh at me for learning things online, but the way I see it, the internet is an infinite encyclopedia of knowledge that you could never get from a single book, thank you, for teaching me something I never would have thought to learn, but I can tell will be extremely useful going forward
@chadd9902 жыл бұрын
the only problem with learning things online is that anyone anywhere can post anything anytime they want. You do have to do a little bit more research to make sure that their claims are true. other than that, yes the internet is a gold mine of information.
@KCKingcollin2 жыл бұрын
@@chadd990 true that definitely is an important take away
@t5zeus5542 жыл бұрын
Wow this is so helpful I shared it with all my friends it will make a large difference for my 10th board examination
@themakeroffun9451 Жыл бұрын
i watched this video about 7-8 months ago and forgot about it but not the trick so I used to think I developed this trick until today I came across the video again, thanks for saving me a lot of time in highschool
@nathanmays79262 жыл бұрын
5:59 “wow” Pretty much sums up this video.
@lettygonzalez12272 ай бұрын
😂 haha 😂 I didn’t catch that before
@shreykumar47752 жыл бұрын
Thank you for this, im a 9th grader and it is tedious to find square roots with the traditional methods, this is much faster and efficient, truly thanks 👍
@joshwajos49302 жыл бұрын
@Darkthe long division method
@aryan_wanve2 жыл бұрын
@@joshwajos4930 ahh, that sucks
@37rainman2 жыл бұрын
@Dark Lol, the long division method can be used to find the sqrt of ANY number to 2 or 3 digit accuracy , in seconds. While this method is really useless for anything at all. (When in your life do you ever run into calculations where you know beforehand that the number in question is a perfect square?). I just did the sqrt of 528941 to 3 digits accuracy. Timed myself. It took all of 40 seconds I didnt even think about whether it might be a perfect square or not. And I could have continued to 6 digits or whatever in very little time. It is just a long division process where (for each iteration) the divisor is generated by multiplying your current answer by 20. You could have leaned it in less time than it took to watch this goofy vid SO incredibly difficult, correct??
@MariaHernandez-bj3xe2 жыл бұрын
Love how you closed at the end with marvelous enlightenment.
@Exaris792 жыл бұрын
My high school math teacher showed me a quick solution by the graphical method. Similar to squares or cubes of # up to 16 in a circle. Reminds me of the Fibonacci circular graph. Of course there's limitations to numbers that are more than 6 digits as you have to scale up the method but it's consistent with the same method of this video. It was more of a quick solution as you have to display in trigonometric values for the square or cube roots as well as the max/min values very quickly. So similar method but displayed in a circular graph and then expressed in degrees of angles.
@izzmus2 жыл бұрын
There is a slightly easier (for me, anyway) method to determine which of the two options for ones digit of the square root is correct: If the thousands/hundreds digits of the square are closer to the next lowest square or the next highest square. (if it is 11, 11 is closer to 9 than to 16, so the root's ones digit will be the lower of the two numbers)
@seanleith53122 жыл бұрын
Presh Talkwalkar, the most depressing name I have ever heard.
@talentic65692 жыл бұрын
@@seanleith5312 ?
@varaprasad92 жыл бұрын
kzbin.info/www/bejne/on22c6CAZZihnrM
@dragonizeyt2 жыл бұрын
@@talentic6569 lol
@37rainman2 жыл бұрын
What are you talking about?? It doesnt matter whether 9 is closer to 11 than 16 is. Take the sqrt of the number 15 instead. Obviously 15 is closer to 16 than 9. But just as obviously the first digit of the sqrt of 15 must be 3, not 4 Correct??
@HEHEHEHA-g3v6 ай бұрын
This is actually the most helpful video on the square root i've ever seen. Thank you so much!
@rupankitamukherjee2639 Жыл бұрын
Really helpful video,these tricks help students(like me)so much! Thanks for posting...and, surely, I will honestly confess that though I knew Aryabhatta discovered the 'Zero', I didn't know that the entire numeral system has its origin in Indian histroy! Wow,feels awesome learning such informative facts.I wonder how a thing this big about my country skipped me.
@kashyap_0-0_ Жыл бұрын
Indians themself are too occupied with learning foreign teachings and discoveries by foreign scientists, our school syllabus tends to ignore a lot of geniuses (who didn't "register" themself a patent somewhere in west) It's really sad
@rupankitamukherjee2639 Жыл бұрын
@@kashyap_0-0_ You are sooo right🙁
@akshataashok4222 Жыл бұрын
Thanks a lot for this video 📹 the last day before the exam it helped me so much .
@andrew338452 жыл бұрын
in just below 10 minutes and 30 seconds, this guy taught me better than my teacher did in over 5 classes during 7th grade when we studied the squared root.
@Flatner32 жыл бұрын
3:10 actually made me say "Ayo?" out loud.
@scarlett_brown8 ай бұрын
who else is here cos of university war? 🤣
@vhrxxooo8 ай бұрын
😂
@meenuvish73888 ай бұрын
Me 😅
@nninheaven71128 ай бұрын
😢me
@thecheesefactory327 ай бұрын
me💀😂
@PlushyguyYT6 ай бұрын
Me…😅
@asheredude2 жыл бұрын
My sir taught this trick of square root before 3 to 4 years to me. By the way you told this trick who don't know and needed this.Thanks and love from India
@varun99542 жыл бұрын
Oh my god...this is just awesome and it's saving 2 to 5 minutes of calculations of mine and now I can solve problems more efficiently. Thanks to you!✌️✌️❣️❣️
@beeble20032 жыл бұрын
What problem does this let you solve efficiently? I can't think of a single situation where I've been given a number which is guaranteed to be a perfect square, _and_ I've needed to take the square root of it, _and_ I've not had a calculator or computer available.
@varun99542 жыл бұрын
@@beeble2003 Oh dear, I didn't mean to make you feel bad but the competition for which I'm preparing has quite a few big perfect square roots in between the solutions, so, this trick really helped me a lot. I hope I cleared your doubt.
@beeble20032 жыл бұрын
@@varun9954 Oh, OK. So the situation is an artificial one but it is, nonetheless, a thing that's useful to you.
@UdaySharma-d3k9 ай бұрын
Being an Indian, I can proudly say that foreigners are starting to respect the great Indian mathematicians of past....Not only this system, many other theories were given by Indian mathematicians, philosophers, scientists, etc.
@disguisedpuppy4 ай бұрын
bhai kitna validation chaiye?
@aeray35814 ай бұрын
"Zero: India's contribution to mathematics" (tee shirt)
@madhavipatil14442 ай бұрын
Who invented number 0 @@aeray3581
@priyankazade23532 ай бұрын
Just so better than other KZbin channel 👍👍. A big thumbs up. Really you cleared my semester's biggest problem Thanks a lot❤
@RADHEY-KRISHNA2 жыл бұрын
We use long division type method. That's better for even non-perfect squares. Btw, Great Video! Thanks for sharing.
@chengshengway2 жыл бұрын
Yes.
@bagelnine92 жыл бұрын
Please explain how it works. Can it approximate roots? Can it work for other root bases?
@RADHEY-KRISHNA2 жыл бұрын
• Step 1 : Separate the digits by taking commas from right to left once in two digits. Ex. 98087 = 09,80,87 Ex. 108087 = 10,80,87 • Step 2 : Write the no. which has the square closest to (and less than) the first two digits before comma. __3_________ 3 | 10,80,87 | -09 | = 01 | • Step 3 : Move down the digits in pair. __3_________ 3 | 10,80,87 | -09 | = 01 80 | • Step 4 : Add the same digit on left side that you've written last above. __3_________ 3 | 10,80,87 +3 | -09 =6 | = 01 80 • Step 5 : Now, you have to do like this, 61×1, 62×2,....and find a no. that is less that or equal to the no. written on r.h.s. In this case, we take 62×2=124 (since 63×3 = 186>180) __3 2________ 3 | 10,80,87 +3 | -09 =62 | = 01 80 | - 0124 | = 56 • Step 6 : Now copy next two digits. __3 2________ 3 | 10,80,87 +3 | -09 =62 | = 01, 80 | - 0124 | = 56,87 • Step 7 : On l.h.s, we must add the digit, we wrote last. Like here, it would be 62+2, and not 62+62 __3 2________ 3 | 10,80,87 +3 | -09 =62 | = 01, 80 +2 | - 01 24 = 64 | = 56,87 • Step 8 : Now, do the same, 641×1, 642×2....here, we get 648×8= 5184 < 5687 __3_2_8_______ 3 | 10,80,87 +3 | -09 = 62 | = 01, 80 +2 | - 01 24 = 648 | = 56,87 | - 51 84 | = 05 03 • Step 9 : After this, put a point above and add two zeroes to get 50300 and repeat the same. If you would've got, say 5000 only and on the l.h.s, 648+8 = 656, then we see 656x × x > 5000, then above, put a 0 to get 328.0... below put two zeroes, 5000,00 and on the l.h.s one zero, 6560, and continue 6560x × x.... Hope it helps! It doesn't approximate, but gives exact. It might work for cube roots too, but is a bit complicated and I actually, don't know, would prefer prime factorisation to approximate.
@surekhasangale89072 жыл бұрын
@@RADHEY-KRISHNA there's no way you didn't copy paste that
@RADHEY-KRISHNA2 жыл бұрын
There's a way, I typed. Honestly, if you believe. Have a great day!
@khhkhf18592 жыл бұрын
A video you don't search but definitely the one you need
@1a1u0g9t4s2u2 жыл бұрын
This is a really nice way to solve for sq roots and cube roots. Like multiplication tables when I was a child, this would be nice to practice for today's students. My gut feeling is...if practiced enough with this method one could be fast but not as fast with this method as it would take to enter it into a calculator and would impress your friends.
@varaprasad92 жыл бұрын
kzbin.info/www/bejne/on22c6CAZZihnrM
@37rainman2 жыл бұрын
You will never in your life be able to do anything practical with this trick. It is totally useless information
@kevinmartin77602 жыл бұрын
Unless you are told the starting number is a perfect square (or cube) you have to verify your answer anyway, so looking for an easy-to-square (cube) in-between number might be slower. An explanation of *why* this works would have been nice.
@bgbthabun6272 жыл бұрын
ikr?
@varaprasad92 жыл бұрын
kzbin.info/www/bejne/on22c6CAZZihnrM
@DMfromWesternAustralia2 жыл бұрын
There was a square root method I saw on Math Stack Exchange which only worked on perfect squares. I thought at the time: what use would it have?... then it clicked that it could be used on squared units of measurement (square meters, etc.). For a square root finding method like this to work correctly, the input figure in say... square meters... would either have to be... an integer... or an integer and fraction pair (so 29&23/49m², instead of 29.4693877m²). The input figure's origin must also be of some "parent" figure that was squared. To get the square root of a pair like 29&23/49, you convert the integer and fraction pair into an improper fraction. To do this, you multiply the integer by the denominator, then you add this to the numerator. Delete that old integer, as it is now part of the fraction. This improper fraction is... 1444/49. Use your square root finding method of choice on the numerator of this fraction... the numerator will now be 38. Now, find the square root of the denominator: that's 7 (easy). The square root of 29&23/49 is... 38/7. If you convert 38/7 into an integer and fraction pair, you get 5&3/7. Edit: I'd also like to point out that-in the method above-the 5&3/7 (or 38/7) you see there is the EXACT square root of 29&23/49. For any given fraction (improper or not)... let's call that Fraction A: if both the numerator and denominator are perfect squares, and you make the numerator its own square root and the denominator its own square root, and you call this modified fraction Fraction B... Fraction B will be the exact square root of Fraction A.
@37rainman2 жыл бұрын
@@DMfromWesternAustralia You need to realize that there is a VERY simple and easy to remember process to determine the sqrt of ANY number to any accuracy desired. It will take you about as much time to learn it as it took you to write 1/4th of that post you wrote, and again, you will easily remember it forever
@DMfromWesternAustralia2 жыл бұрын
@@37rainman It's kind of obvious to anyone mate that any square root method which will only work on perfect squares has little utility. The aim of my post was to showcase that methods like these have more utility than many here (this video's commenters) seem to realize. I will say this though: I've seen many square root finding methods (I've come across around six methods so far), and the method that's shown in the video certainly tops the list in terms of speed. For that reason alone, for any given figure that you know will be compatible with the video's method, it makes sense to use the method on the figure over any other method.
@chuisthename Жыл бұрын
this is great! thank you sir so i figured out how to calculate square root of any random number using this, bare with me it can be complicated: 1. for nunbers that ends with 2, 3 and 7 we do -1. for eg 6672-1 into 6671 2. go through this same process but then keep all results (for example numbers that end with 1 we have x1 and x9) 3. (all results from step2)^2 4. calculate the gaps of (step3) values to the start number 5. choose the smallest gap (smallest value out of all values in step4), take that number 6. if value from (step4) is smaller than starter number and it's gap in (step3) is bigger than itself do +1, if the gap (step4) is smaller than start number and its gap(step3) is smaller smaller - 1 this will be the end result number without the commas numbers. If the gap in (step4) is smaller than the gao from (step3) then keep it unchanged 7. do (step5)^2 8. calculate gap between (step7) and start number, 9. calculate square root of (8)result of (9) will be estimation of the first 1or2 digits after the comma :)
@Badkitty242 жыл бұрын
Thank you for this. Seriously. I worked in retail for 10years and i could ALWAYS add up totals in my head and figure out change, BEFORE someone was able to type all the numbers in the computer. I have also shown people how fast i can add by having them write down 2-5 sets of 2-4 digits of numbers...and i'd have them added before they could enter into a calculator. I can SEE and hold numbers in my head, repeat numbers verbally in my head and visual look at numbers all at the same time while i'm adding and rounding numbers up. I never had to do subtraction much so i'm not as fast, but i can do it. This will be another trick for me :D I just have to remember those sets of numbers.
@labscience82712 жыл бұрын
1:24 10^2 ends with 0 as well, so we might consider this as well...
@a.k.7412 Жыл бұрын
this the best math video i was not answering in class but now im the best on roots
@jameskelly48732 жыл бұрын
This was actually pretty informative, thank you so much.
@37rainman2 жыл бұрын
You will never make any use of this useless information though
@Ma-ol6pp2 жыл бұрын
@@37rainman it will help me a lot in school
@37rainman2 жыл бұрын
@@Ma-ol6pp So your school has tests where they declare beforehand: "Anytime you need to find a square root of a number in this test, the number will be a perfect square". Yes??? Or maybe in your country, every single time any student encounters a number she needs to find the sqrt of in any test, that number will be a perfect square So, lets see.............. You have a test question, and in the test you cannot use calculators, "What is the dimension of a square which contains 1000 square feet?" You cannot give the answer beyond saying "somewhere between 30 and 40 feet". Only in India ..................... Wouldnt it be better to just learn a method to find sqrts of ANY number to ANY accuracy desired, and very quickly, since you are apparently interested in this subject? It will take you about 1 minute to learn it
@ziadjsd1088 Жыл бұрын
@@37rainman exactly
@x_Infinite2 жыл бұрын
Thanks, will really help with studying algebra.
@verypanda18012 жыл бұрын
I’d recommend using a “factor tree” if you are studying algebra. The method in the video is really neat but in my opinion if you are new to the topic you should go with factor trees (or similar methods to factor trees).
@LukaGalactica2 жыл бұрын
@@verypanda1801 agreed
@TheGodQuac2 жыл бұрын
@@verypanda1801 bro said algebra not basic maths
@LukaGalactica2 жыл бұрын
@@TheGodQuac there are still basic mathematics in algebra
@vivek3496 Жыл бұрын
brother, it is a super, legendary, awesome, god-level, less for words to express video helping students with competitive exams I will share it to at least 50 people you plz keep on making this type of videos
@stefanodigarbo47352 жыл бұрын
This is superb. I'd love to see the demonstration of the method. Could you make a video for that?
@jxyden952 жыл бұрын
Only 1800s kids remember
@nightopia.19816 ай бұрын
same
@pokeanime1856Ай бұрын
I dont think they are kids anymore😂
@darshbir Жыл бұрын
We still dont use caculators in our entrance exam In India. Due to this we remembered almost squares till 30 in our head (due to practice). Thanks for this it saves a lot of time... :)
@aussietaipan8700 Жыл бұрын
This was really cool and can be further built upon to suit other minds.
@Virtualleeeeee Жыл бұрын
I can tell this is gonna be useful on my homework
@ThatOneGuy_01 Жыл бұрын
My best method as an 8th grader is for example: Calculate the square root of 1089 What i do is logic reasoning:i say that if 30x30=900 then the square root of 1089 shall be something around 32-33 which is 33, obviously then I calculate it which gives me 33x33=1089 which is the result i was looking for, though I realize that this method won’t extend for bigger square/cube roots.
@johnsonkhoo77642 жыл бұрын
Instead of calculating the square of 35, we can compare 1156 to 30^2=900 or 40^2=1600. Take 34 as it is nearer to 30 since 1156 is nearer to 900. Nevertheless, your method of squaring 35 is pretty cool and useful.
@varaprasad92 жыл бұрын
kzbin.info/www/bejne/on22c6CAZZihnrM
@SilvinaLisboa2 жыл бұрын
Thank you for the video and the class of History!!! That was awesome!
@0animeenjlyer16 күн бұрын
Amazing man, keep up the good work!
@shinjinibahadur44602 жыл бұрын
Very helpful, thanks a lot!
@TolaseRichard Жыл бұрын
b
@matejsevcik26182 жыл бұрын
This is genius. I always wondered how to calculate square roots with huge numbers!
@varaprasad92 жыл бұрын
kzbin.info/www/bejne/on22c6CAZZihnrM
@PythonicSerpent Жыл бұрын
This is the BEST video on square roots and cube roots I have ever seen and this will help me with highschool math so much
@jayeshsolankiii2 жыл бұрын
This method is of Vedic mathematics teach us in 9th class. This is an ancient India method. 🇮🇳🇮🇳
@jatinchawla42362 жыл бұрын
Right bro
@joedi2 жыл бұрын
This is Vedic Math. vilokanam (squareroot) & ekadhikena purvena (squares)
@MrQwefty2 жыл бұрын
You could use divisibility tests to quickly dismiss impossible options, too!
@varaprasad92 жыл бұрын
kzbin.info/www/bejne/on22c6CAZZihnrM
@richardwestcott50028 ай бұрын
Just found out that an exam I’m scheduled to take no longer allows use of calculators. This video will be priceless in my preparation. 🙏
@pmstark10 Жыл бұрын
Its very helpful, but for most practical purposes one needs to find out whether the number is a perfect square
@ayanoaman3179 Жыл бұрын
In that case get the answer then square it to check if they are exactly the same
@pmstark10 Жыл бұрын
@@ayanoaman3179 That'd be a bit too time consuming and take away the point of this method
@Annie-ph8vq Жыл бұрын
@@pmstark10 Squaring 6 digit numbers generally takes less than a minute for the average 7th grader.
@AdityaSingh-uh9lq Жыл бұрын
Proud of my country 🇮🇳🇮🇳
@xcreeperbombx61 Жыл бұрын
I know the MYD on your cards stand for "Mind Your Decisions", but I can't stop thinking of it like 2/2023/21
@TheRealBobHickman2 жыл бұрын
16384 is easy if you're a computer programmer.
@sharadkumarsingh48022 жыл бұрын
Yeah I too find it very easy to operate on base 2 numbers
@aurexify2 жыл бұрын
I'm not a computer progammer but I have memorized all the powers of two up to the 24th power (16 777 216).
@WerewolfCW2 жыл бұрын
I may not be good at math but this helped me quite a bit. Thank you :)
@nicholasgott35905 ай бұрын
I've always loved using this method. I learned this trick with my Uncle. After getting quick with it, I would use it as my party trick in high school way back in the day. I loved pairing this trick with the divisible by 9 trick (Add up all of the digits of a number, if that is divisible by 9, then the number is divisible by 9). So after doing this square roots trick a few times, when I noticed that the person used a number divisible by 3. That number squared will be divisible by 9. So I "seemingly" randomly pick that large 3/4 digit number and tell them to multiply it by any random 3 digit number. Then I ask them to read off all digits except any one of them. I add up the digits and see what it takes to be divisible by 9 and then that is the digit they left out. (Of course 0 and 9 would stump you. Go with 0, most of the time that works. A little bit of psychology in the mix) Enjoyed pairing a love for math with a fascination with magic. Cheers to a great video! Show your friends your math magic.
@Rrek2 жыл бұрын
Another good way to memorize your squares is to know that each consecutive one is the previous answer plus every odd number after zero (1, 3, 5, 7, 9, etc.) 0+0=0 (0^2=0) 0+1=1 (1^2=1) 1+3=4 (2^2=4) 4+5=9 (3^2=9) 9+7=16 (4^2=16) 16+9=25 (5^2=25) 25+11=36 (6^2=36) 36+13=49 (7^2=49) 49+15=64 (8^2=64) etc. etc.
@KittyKatalina2 жыл бұрын
I remember noticing this and figuring out that you can double the root to find the difference between two consecutive squares. For instance, 7^2=49, 7x2=14. Going down, reduce by 1 (14-1=13), going up, increase by 1 (14+1=15). 49-13=36=6^2, 49+15=64=8^2. Another example: 40^2=1600. 40x2=80 (down: 79 / up: 81). 1600-79=1521=39^2. 1600+81=1681=41^2. You can of course keep going in either direction: 1521-77=1444=38^2. 1681+83=1764=42^2. This allows you to start from a simple square (like 40^2=1600 above) and approach nearby squares.
@Rrek2 жыл бұрын
Woah I hadn't realized this. Might come in handy someday. Legitimately impressed rn lol nicely done
@yashghosh13162 жыл бұрын
Sir what we do in 6 digits number
@Love.every.bit.of.life12310 ай бұрын
THANK YOU SO MUCH!!!! I legit had a Maths Assessment tomorrow and I knew everything about algebra and etc but I was really stuck with this and now in this way, I know how to do them, I really appreciate it😄💖✋🙏
@waynemv2 жыл бұрын
If X+Y equals a multiple of 50, then X^2 and Y^2 will end in the same last TWO DIGITS. For example, 22+28=50, 22^2=484, and 28^2=784. If, X+Y equals a multiple of 500, then X^2 and Y^2 will end in the same last THREE DIGITS. If, X+Y equals a multiple of 5000, then X^2 and Y^2 will end in the same last FOUR DIGITS. And so on...
@kaushalsehgal24752 жыл бұрын
Nice! Can you prove it?
@shingmiin2 жыл бұрын
It’s nice to know this, but it doesn’t seem to help in math.
@anapintar2394 Жыл бұрын
Hi, great video but i want to know what do you do to the 2*3=6 in the root of 841 do you add it somewhere. Sorry if its a odd question its kinda hard to do maths in another language
@HI-hi17 Жыл бұрын
Ok so I am gonna explain it First take the original number which is 2. (First Number) Now find the successor of that original number or just find that number added to 1. So 2+1=3. (Second Number) Now multiply both numbers. That gives: 2*3=6 Other examples: 1) 5 =5 * (5+1) =5 * 6 =30 2) 13 =13 * (13+1) = 13 * 14 = 182 Hope It Helps!!
@Interesting.facts_withme Жыл бұрын
in 841 two possible 21 or 29 2×3=6 6 is low then 8 so you should choose 29 (the large one)
@fahadimran5031 Жыл бұрын
Damn. Will definitely remember this when I build my time machine to go back and give the 1876 MIT Entrance Exam💀👍
@zengrath2 жыл бұрын
This is cool but i was hoping to see an explanation on how to find non-perfect roots up to a certain number of decimal places for example. Does this only work on perfect roots?
@dave0invictus2 жыл бұрын
It does only work on perfect squares, but if you have a number that isn't a perfect square then you can factor it and solve it with a much smaller non perfect square left over
@Tezhut2 жыл бұрын
You can look up a method for calculation of any square root. It's a bit more work, but there are some similarities (like going on steps of two digits at a time). The method in the video does give a nice whole number approximation though!
@vannam20222 жыл бұрын
You can use a Long Division Algorithm to find non-perfect root.
@divishachauhan30262 жыл бұрын
I am seriously not kidding but it's bean 4 years and each year I search on google and watch this video 😂😂😅
@manarmansour3670 Жыл бұрын
But isn’t the video before 8 months
@Luusids6 ай бұрын
this is the most helpful math videos i have seen in a VERY long time
@riskacendana8085 Жыл бұрын
Thanks a lot, this is helpful!
@TolaseRichard Жыл бұрын
hay pal
@olegmoki Жыл бұрын
pal hay
@shamikkamatstudies45982 жыл бұрын
2:00 Isn't it tenth's and units digits? Just a bit confused at this part
@oreosdilemma573 Жыл бұрын
This video has changed my perspective of looking at square roots
@sphakamisozondi2 жыл бұрын
0:42 "answter" 😊
@Taigokumaru2 жыл бұрын
I actually knew 16384 was a power of 2. So I counted from 2^10=1024 to get to 2^14= 16384. Then the square root cuts the power in half so the answer is 2^7=128 which I also had memorized because it's another power of 2 :D
@themathsgeek85282 жыл бұрын
Lol same, even I have the powers of two memorised till like 2^25
@anandk92202 жыл бұрын
@@themathsgeek8528 By the way I know powers of 2 till 16 but also know 2^20 and know squares till 111. Anyway. Just for info that I'm an Indian, IB/IGCSE And Indian Curriculum Math Teacher by profession. I don't know what this person has said in the video. Here's the best trick : TO FIND PERFECT SQUARE, CUBE OR Nth POWER OF ANY NUMBER : Just split the number into TWO parts in terms of place value, assume first part as A & second as B, and then use (A + B)^2 expansion. Example - 83 = 80 + 3 A = 80, B = 3 So, 83^2 = (80 + 3)^2 = 80^2 + 2 × 80 × 3 + 3^2 = 6400 + 480 + 9 = 6889 Similarly, 137^2 = (130 + 7)^2 = 130^2 + 2 × 130 × 7 + 7^2 = 16900 + 1820 + 49 = 18769 Similarly it's possible to calculate cubes and higher powers of ANY number using the binomial expansion (using Pascal triangle coefficients). TO FIND SQUARE ROOT/ CUBE ROOT OF ANY PERFECT SQUARE/ CUBE : By the way, all those who don't know this, there is an amazing 2 to 5 second technique to find square root of any perfect square, preferably a smaller number. Note that every group of two digits from right (starting from unit's place) to left will contribute to ONE digit in the square root (You can append 0 to highest place value as and when needed to complete two-digit group). Example - Square Root of 57121 1. Focus on unit's place and analyze the unit's place of square root (either 1 or 9, as both 1×1 and 9×9 ends with 1) 2. Temporarily leave the LAST TWO digits and focus on the remaining part of number. (In this case 571) Now locate this remaining number between two perfect squares. (In this case, 571 lies between 529 = 23 squared and 576 = 24 squared) 3. Since 571 is closest to 576, the square root must be closer to 240. Hence, Square Root of 57121 = 239 All dear friends, in case you are or want to be better at calculations, I'd like to share an app with you. Do try the 'Math Tricks' app by Antoni Ion from Google Play Store. Extremely good brains can try 'To The Bitter End' mode wherein they even ask 1885 squared and stuff at higher levels. [ Note : I tried 'To The Bitter End' mode many times and after reaching 163 to 165 levels, I accidentally pressed back button mostly everytime to wash away my hardwork. Finally with tons of patience, I strongly fought for 4 straight hours or more and completed 204 levels and then happily declared my calculation innings and stopped there ! ] 😂😄 You may also try Hard Math Game by marcin.magician from Google Play Store and reply your experience. In case you're interested in solving Math puzzles, do visit contestcen.com and go to Site Map (with various puzzle pages like Digits, Easy Math, Tough, Harder, Geometry, Convergence, Primes, Squares and Powers etc.) Highly skilled and interested minds, do visit contestcen.com/geom.htm and try the following questions - 1. Circles in a Square 2. 4 Tangents 3. 5 Spheres 4. TetraSpheres Thank you. Love you all. 😙😙😙
@RamInChennai2 жыл бұрын
Ha ha. Me too. I have memorized powers of 2 until 20. It was a craze memorizing them.
@wittybubbles875 Жыл бұрын
This could help me in my exam tomorrow...thanks for this video..😄
@MegaPoyser2 жыл бұрын
0:01… my head is already hurting
@hemaanggupta81832 жыл бұрын
Now10:15
@IS-py3dk2 жыл бұрын
9:12 Proud to see the name of our country india 🤗 You americans , French whoever u are... thanks for believing in us 🙂
@typingcat2 жыл бұрын
Thank you, come again.
@LINEDRAYSАй бұрын
This is actually really helpful! I was figuring out how to calculate square roots easily and this video helped me out alot! Thank you!