We don't need to use a brute force solution here. Given the fact we know that a > c and b = b, The final step will always look like: (a- c - 1) + 9 + (10 + c - a) = 18 We know that the final term will need to borrow a 1 that will be carried over all the way from the hundereds columns. a's and c's cancel out.
@staffehn7 жыл бұрын
Yes! Another one with the same mindset ^^ (compare my comment up there)
@yaiirable4 жыл бұрын
ABC - CBA imagine you are doing the subtraction. You start with C - A, but because A is bigger than C you need to carry the 1 from the B column. This makes the first term equal to (10 +C) - A. Then you do the same with the B column and then you are left with the final step I outlined above. Then cancel out the variables when adding all together to get (a-c-1) + (10+B-1-B)+(10+c+a). Hope that's more clear
@Tehom17 жыл бұрын
0:34 Let's follow this trick using algebra: Pick a 3-digit number: I pick x*100 + y*10 + z, and I'll write it as "xyz" Reverse the digits: zyx Subtract the smaller number from the larger number: xyz - zyx = (x-z) 0 (z-x) And I need to fix it up as a decimal, using the fact that xyz is larger so x > z: (x-z-1) 9 (10+z-x) Add up the digits of the result: x - z - 1 + 9 + 10 + z - x = 18
@pupskanonel.jackson67223 жыл бұрын
What
@Tehom13 жыл бұрын
@@pupskanonel.jackson6722 Showing that it works for all 3 digit numbers.
@alloosworld12353 жыл бұрын
Uncle, my grandpa was maths teacher in a school so he teached me this awesome trick but now he left last year but I forgot this trick so then I saw your video so thankyou for explaining this much easily . Anyway thanks . I was crying cause I remembered my grandpa..Tnks a lot.🙂🙂😄😪😔🤧🙁😁😁😁
@zimeirbarrett55773 жыл бұрын
The number has to be 18 me who used a negative number ;-;
@fredrikenetorp11737 жыл бұрын
Didn't work. I choose 0x4BA 0x4BA --> 0xAB4 --> 0x5FA --> 0x1E = 30 which is not equal to 18 nor 0x18.
@purpleice23437 жыл бұрын
0x4BA is 1210 in decimal :) Not a 3 digit number. In mathematics we never use anything but decimal, nice try though.
@staffehn7 жыл бұрын
wrong.. where would you talk about different number systems if NOT in mathematics?
@purpleice23437 жыл бұрын
Some people might prefer using base-12 system. But we use only base-10, other bases are used only because we have hardware that can have only two states, hence why binary is even needed at all, other bases are just to make it easier for whoever is working with that, nothing to do with math at all. It's just number systems. You're just trying to abuse differences in number systems and "prove" that it doesn't always work. It's like I told you to fucking ask something from someone who understand only english and you brought your fucking ancient egyptian hieroglyphs and asked them to read that question. It's fucking useless, inconvenient, and nobody fucking understands it without having to convert that information into something everyone understands. We don't use different number systems in maths, hexadecimal is convenient only because you need 2 characters to represent 3 digit number in decimal, other than that, it's confusing and you can't really tell. How many digits 64 has? Trick question, 3, because it's hexadecimal representation of it, actual number is 100 : ^) Oh wait, anyone here wants to use 64 to write what we know as 100?
@staffehn7 жыл бұрын
Let’s stay on the topic of maths and not the topic of everyday-number-usage. What matters is that the statement of the trick depends on the base chosen for representing the numbers and that this should probably better be explicitly mentioned when posing the problem. Even more interesting is the fact that, actually, the reason why the trick works has nothing to do with the choice of the number 10 as a base-that is-choose any base, and you’ll get 2b-2 or 2(b-1) as the result. For base 10, that’s 18 ..for base 16 it’s 30 ^^
@staffehn7 жыл бұрын
Also "100" is the octal representation of 64.. its hexadecimal one is "40". Hexadecimal "100" is 256 ;-) And it’s impossible for a (whole) hex number to be longer than the same decimal number. The length of a natural number x in base b is always floor(log_b(x))+1. And that function is antitone in its parameter b.
@AndreasWoykepianistandcomposer7 жыл бұрын
Just to add: The result of each one digit number multiplied by 99 will be a three digit number with a 9 in the middle. The other two digits are supposed to add up to 9 because the checksum of each number divisible by 9 is also divisible by 9. So the result will always be 18. Like it!
@staffehn7 жыл бұрын
oh.. I like this approach ^^
@donnovanash2334 Жыл бұрын
Bro doesn’t like binary, thinks it doesn’t exist
@donnovanash2334 Жыл бұрын
0 x 99 = 0 1 x 99 = 99
@badrunna-im7 жыл бұрын
Letting the number be ABC, from ABC-CBA we see that B cancels out. Starting with a base case where A=2 and C=1, the difference will equal 99. Adding n to A will add 100n to the difference but also subtract n from it. The result can only be shifted by (100-1)n, or 99n. 99 from the base case +- 99n is also a multiple of 99. Since 99=100-1, a multiple of 99 can be expressed as 99+(100-1)n. This shows that, between 3-digit multiples of 99, any digit's addition in the hundreds place is canceled out by the subtraction in the ones place. Without carrying over, i.e. when the last digit's 0 (990), the tens digit stays constant. Thus the sum of the digits is constant and 'guessable' within the constraints given in the question.
@ProProboscis7 жыл бұрын
At this point you may need to create a kids' version of your channel.
@purpleice23437 жыл бұрын
It is already full of braindead kids who can't follow simple instructions, don't worry.
@user-nu6ge7px7s6 жыл бұрын
776-677 = 99 9+9 = 18 422-224 = 198 1+9+8 = 18 is break the rule but still get 18
@BlinkLed7 жыл бұрын
I don't know why these simpler videos always get so many dislikes. I appreciate the mix of content on the channel.
@ihordrahushchak54396 жыл бұрын
numbers=[] for x in range(100,1000): if len(list(str(x)))==len(set(list(str(x)))): reversed_num=int(str(x)[::-1]) if reversed_num>x: subtracted=reversed_num-x else: subtracted=x-reversed_num added=0 for i in list(str(subtracted)): added+=int(i) numbers.append(added) print(set(numbers)) Output: {18}
@okaro65957 жыл бұрын
The first number of the result is a-c-1, the second 9 and the last 10+c-a. Add these and the variables cancel each other and you get -1+9+10 = 18.
@Packerfan1307 жыл бұрын
Paused the video. Let 100a + 10b + c be your orginal number where 0
@michaelempeigne35197 жыл бұрын
Make more of these math videos please. Mindyourdecisions
@sebastiansimon75577 жыл бұрын
No, please don’t… those are trivially proven; far too easy and thus boring.
@TheOriginalFayari7 жыл бұрын
Dear Reader of this Comment. Look, we both agree that I do not personally know you, but I will describe you almost perfectly. You have a need for other people to like and admire you, and yet you tend to be critical of yourself. While you have some personality weaknesses you are generally able to compensate for them. You have considerable unused capacity that you have not turned to your advantage. You tend to be worrisome and insecure on the inside. At times you have serious doubts as to whether you have made the right decision or done the right thing. You prefer a certain amount of change and variety and become dissatisfied when hemmed in by restrictions and limitations. You also pride yourself as an independent thinker; and do not accept others' statements without satisfactory proof. But you have found it unwise to be too frank in revealing yourself to others. At times you are extroverted, affable, and sociable, while at other times you are introverted, wary, and reserved. Some of your aspirations tend to be rather unrealistic.
@antforeargar35237 жыл бұрын
Other solution: abc - cba ------- a0c - c0a ------- There will be a 9 in the middle because a>c The Numbers will now be: a-c-1 (-1 because you need to borrow so that you can borrow from the middle number) , 10-1 , 10-(a-c) (the 10 is from the middle number, and c-a = -(a-c) (not actually necessary, but That's how I solved it)) Now we add all of the numbers. a-c-1 + 9 + 10-(a-c) = a-c-1 +9 + 10+c-a = a-a+c-c+10+9-1= 18 Answer will always be = 18 (This Was all written on a mobile device)
@user-nu6ge7px7s6 жыл бұрын
If I break the some rule It can also work some same digit with first digit and second digit Or same in second digit and last digit It only didnt work is first digit and last digit is same number 644-466 = 198 1+9+8 = 18 But if 464 - 464 = 0 You can change "with 3 different digit" to "with first digit and last digit is different number"
@elchuchulo7 жыл бұрын
If you were to use hexadecimal instead of decimal, would it still work?
@purpleice23437 жыл бұрын
In math we don't use anything but decimal.
@sebastiansimon75577 жыл бұрын
For any base b, you’ll get 2b - 2.
@sebastiansimon75577 жыл бұрын
Shadow Lurker - Congratulations on winning the prize for the Least Intelligent Comment of all Time!
@Sir.BlackHole11 ай бұрын
mh... from 3,14 to 3,41 ok now i have 0,27 0 + 2 + 7 = 9
@silverseacow2 жыл бұрын
This is what I call mathemagic
@seersam7 жыл бұрын
|100a+10b+c-100c-10b-a| = |99a-99c|=99|a-c| test for every value |a-c| can have (1,2,...,8) the sum of the digits will always be 18
@seersam7 жыл бұрын
yep knew it Just a small mistake. |a-c| can also be 9
@Ulilopz7 жыл бұрын
Sorry, I picked 460 Maybe you should add a restriction to the picking part.
@randomusername34457 жыл бұрын
Víctor Ulises López Arias that still works 460-64=396. 3+9+6=18.
@deanyona62467 жыл бұрын
1+8=9
@Ulilopz7 жыл бұрын
Thank you! I definitely misunderstand the instructions.
@fk319fk7 жыл бұрын
I thought this was a different problem. Take a three digit number as stated, and subtract. Then take the result and reverse it again and add the two numbers. The number always is 1089, and I am not sure why.
@TuberTugger7 жыл бұрын
So, choose a number from the follow series: 198, 297, 396, 495. Then add the digits together. Get ready to be impressed!
@wolfgangsullifire61587 жыл бұрын
I like the explanation and how you can work to get the answer
@robylopezvi7 жыл бұрын
133 VIEWS?? IV'E NEVER BEEN THAT EARLY!
@mehreenkhan69764 жыл бұрын
I am 2 years late
@robylopezvi4 жыл бұрын
Mehreen Khan lmaoo
@eabhalindsay74694 жыл бұрын
He was wrong I got 5 and I did the math right
@paulobouhid66487 жыл бұрын
You don´t need to *reverse* the order of the digits of the original number. Just write a different number with the *same digits* ...
@ilyasabadashev9587 жыл бұрын
instead of adding up the digits, reverse your answer once again and sum those two... you'll get 1089 every time, i used that a lot as a magic trick :D
@badrunna-im7 жыл бұрын
Ilya Sabadashev unless they picked 2_1, because no one reads 99 as 099.
@purpleice23437 жыл бұрын
99 is the same as 099... But okay, I don't blame you that you never had to play games as a kid... Most of the time, arcade ones have like 10 digit score which always has 0's in front of your actual score, always making it a 10 digit score even if number is a lot lower :)
@x_abyss7 жыл бұрын
I used similar approach up until checking if every possibility sums up to 18. We know that the subtraction of the larger number from the smaller one is a multiple of 99, which means all the digits of the result add up to a multiples of 9, and the sum of the 1st and 3rd digits minus the 2nd is a product of 11. The only way the latter criteria can be satisfied is if 1st digit + 3rd digit - 2nd digit equals 0, meaning that the sum of the difference is even. Therefore the only sum of any three digits number divisible by both 2 and 9 are either 0 or 18.
@RinkuTiwari2327 жыл бұрын
Great trick
@ethanmemelord27277 жыл бұрын
Ive known this trick for years
@peter_castle5 жыл бұрын
Solution should have include, to be more trustworthy and not rely on summing all the last 3 digits numbers showed at the end, 1) sum of digits of the sbutraction is multiple of 9, because the substraction is multiple of 9, because both numbers have the same sum of digitis because of being reverse of each other thus having same digits, so the possible values are 0,9,18,27... 27 is 999 only which is clearly impossible, 2)prove the 2nd digit must be 9, to imply the sum of digits cant be 9, so its 18
@saraflint29827 жыл бұрын
I knew the trick as soon as you said "reverse the digits and subtract." This also works with 4-digit numbers. With 5 and 6-digit numbers, the end sum is 27. With double-digit numbers, the end sum is 9. (With single-digit numbers, the end sum is also 9. Example: 70 - 07 = 63. 6 + 3 = 9.) Good trick for beginners, but I'm onto you now!
@shannonklotz61477 жыл бұрын
I misunderstood what you meant by larger number. I was thinking 345 then switch to 543 and subtracted 3 from 5
@cartbox85983 жыл бұрын
No you have to subtract 345 from 543
@bladecup3 жыл бұрын
@@cartbox8598 Why you dont give us example,tnx
@dxmobile3 жыл бұрын
My answer was 12
@owens0203 жыл бұрын
3 digets 222 reverse number 222 sutract the smaller number from the larger number 220 out math
@greenmoonn13796 жыл бұрын
I’m confused how do I subtract the smaller with the larger then add the result... bruh I’m confused
@guinereyes92504 жыл бұрын
Yeah.. Me too, that was the step I was wrong
@ntwede4 жыл бұрын
Add up the digits of the result. Like with 254 you would do 2+5+4=11
@christopherreese45463 жыл бұрын
Yes.
@ieatcaribou78526 жыл бұрын
My number was 120. My answer was 3. Would any number with a zero in it mess this up I wonder?
@user-nu6ge7px7s6 жыл бұрын
120-021 it mean 120-21 = 99 9+9 = 18
@samarbhandari21965 жыл бұрын
Brilliant
@alloosworld12353 жыл бұрын
My answer was 198
@AQxJM6 жыл бұрын
I got 4 lmao
@sourabhkukreja75436 жыл бұрын
fantastic
@MrHawkeyefan4life7 жыл бұрын
Wait how's this trick work? I'm not understanding this?
@giladzxc177 жыл бұрын
What happened to the time when you posted real riddles?
@Kino-Imsureq7 жыл бұрын
Works with 4 digits too!
@sunderlal31407 жыл бұрын
You are correct
@Kino-Imsureq7 жыл бұрын
0:39 I was looking at a number AKA 2.718281828459045 AKA e so yah
@stellaquinn4315 жыл бұрын
No, I got 10, you used 100+10+1 Which that would be 111( one hundred eleven) the number I used was 587 (five - hundred eighty - seven)
@AhmedMohamed-yr3nd7 жыл бұрын
Ooh..super true
@keyurmakwana59734 жыл бұрын
If we use all the three digit same the answer will always be zero
@naret037 жыл бұрын
Instructions unclear or maybe i'm dumb but i got 4. I chose 213 so i get 312 then i subtracted the largest number minus the smallest which is 3 - 1 = 2 then i added this result plus the digit i got left which is 2; 2+2 = 4... didn't know i was making two different numbers i thought i was changing my original number...
@user-nu6ge7px7s6 жыл бұрын
It mean 213 reverse to 312 You need to subtract this before plus the single digit It must use the larger number to subtract he smaller number 312-213 = 99 9+9 = 18
@anas-yo2zo7 жыл бұрын
I chose 1.23 🤔
@mapledoctor39156 жыл бұрын
32.1 - 1.23 = 30.87 3 + 0 + 8 + 7 = 18
@idkdude277 жыл бұрын
Picked 890 for first one and got 1/10
@clementbisson66077 жыл бұрын
did you notice the digits of 99n add up to 18 for n smaller than 100
@lw84206 жыл бұрын
But what about pi times 99
@anthonygilroy99767 жыл бұрын
I check and got 4
@powertube56714 жыл бұрын
Thanks! Very cool! At this date 342 people have clicked off the (I don't understand the math so I can never understand the trick and I'm never going to try to learn, thumb).
@adamninjagaming98854 жыл бұрын
I am in today in 6 class but my friend has done this trick on me at class 4
@vickyduggal27996 жыл бұрын
That is amazing
@theepictalon88246 жыл бұрын
YOU GOT MY NUMBER WRONG IT IS 6😅😅😅😅😅😅😅😅
@usurper10917 жыл бұрын
Please stop making these click baity tivial videos! I never subscribed for this...
@gavinlourenco98424 жыл бұрын
Ha, I chose 1.86 I got 14
@900ml57 жыл бұрын
Are you running out of content?
@Sid-ix5qr7 жыл бұрын
Genius!
@seemadhakad192 жыл бұрын
Bro it's simple method Every 3 different number's sum was 18😒
@bestofcricket35317 жыл бұрын
amazing
@saryustar61 Жыл бұрын
100 true video ❤❤❤❤❤❤❤❤❤❤❤
@NetAndyCz7 жыл бұрын
18 is not even 3 digit number, mine was 123:p I hate this prediction "magic" which either reveals what you predicted after you revealed it, or predicts somnething completely else and makes you change what you thought or picked. Do nto get me wrong there is neat mathematic involved in this, but do not try to make magic trick out of it, it is not a good one and in this case I am afraid average Joe will make mistake when performing subtraction without calculator or piece of paper, which will ruin the trick:D
@purpleice23437 жыл бұрын
The magic in there is that people who have functioning braincells will get 18, and braindead retards will fail to do so.
@jameskelly-smith1279 Жыл бұрын
Okay, who else chose the three digit number 420?
@Sir.BlackHole11 ай бұрын
0:09 ok you never specified if it has to be a whole number or a decimal one... so i will pick 3,14 (it's 3 numbers and they are different from eachothers) mh... from 3,14 to 3,41 ok now i have 0,27 0 + 2 + 7 = 9 naw bro NOT EVEN CLOSE hahahah 0:41 no... you failed again... also with the other "i will predict" you failed... 0:47 cap. I followed them BUT you NEVER specified if the number was meant to be decimal or not. I picked up 3 different numbers... i followed the rules. recheck my math??? bro 3,41 - 3,14 = 0,27 and 0 + 2 + 7 = 9 not 18 0:54 no. At least... not with me. 1:26 you never specified if we had to do with all of them... or just 2 of them... so i chose to reverse only 2 of them.
@samaiahgames99496 жыл бұрын
Didnt work
@faisaldaquigan84656 жыл бұрын
Mine is 17 and his is 18 but I did it correctly
@bladecup3 жыл бұрын
Started with 357 and reverse order 753,so i got 45,or i screw some of your math...
@De_Lune8002Ай бұрын
How'd you get 45??
@ethanlee71634 жыл бұрын
You did not guest mine correctly mine was 5
@Andrea-ln2ti6 жыл бұрын
So this is math class
@mojobouji4 жыл бұрын
Mine was 22 😮😯
@Riiisuu7 жыл бұрын
Upload. Real. Math.
@lare2907 жыл бұрын
This. Fuck these dumb tricks that are basically "I'll guess your birthday. Take your birthday, subtract one and add one day. That is your birthday, pretty cool huh?"
@LesIsMoreFilms7 жыл бұрын
The. Real. Math. Is. In. The. Proof. You. Fart.
@lare2907 жыл бұрын
The proof is just basic algebra though.
@LesIsMoreFilms7 жыл бұрын
Perunavallankumous it's algebra but definitely not "basic" algebra. I doubt you knew the proof the moment you heard the question presented
@yazan.kioumgi7 жыл бұрын
Thumbs down because you didn't show why the digits of 99(a-c) will always sum up to 18. Listing all possibilities is a weak solution.
@marinamacri55205 жыл бұрын
All digits of numbers divisible by nine add up to a multiple of nine that is under 90. Because the number is always a multiple of 9 and probably some distance that is a multiple of some number away from another number, it will always add up to 18
@master-sj6cd7 жыл бұрын
Ok i haven't seen the solution, but here's my way of answering, let s(n) be the sum of n's digits, it is known that s(n)=n (mod9) so with this we can say for sure that the answer is a multiple of 9, (both numbers have the same digit sum) then since we looking for the difference between 2 numbers without common digits we could express this as abc and cba being the numbers (you know what i mean i don't know the english word for that) then i forgot how i proved the last part where i prove 18 fuck me
@dragan1767 жыл бұрын
Hey, I managed to do this one :D
@impossiblephysix26337 жыл бұрын
I took 120 is this legal
@mohammadebrahimi28716 жыл бұрын
My number was 333
@qamartajqamartaj86945 жыл бұрын
123
@rushildev98743 жыл бұрын
Got 11 dude (Edit = no I got 18 wow )
@adipocere5487graphomet7 жыл бұрын
I did 434, i got 0 as a result
@anitamcsd17 жыл бұрын
Shannon Wood hey did you know that you can pick a number with different digits. It's better. CAUSE THAT IS WHAT THE QUESTION ASKED.
@anitamcsd17 жыл бұрын
Shannon Wood man I wonder why he said a number with THREE DIFFERENT DIGITS