Harvard University Entrance Exams interviews maths tricks | Exponential Expression |

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ธ.ค. 2024

ความคิดเห็น • 205

  • @maguiremichael
    @maguiremichael หลายเดือนก่อน +155

    Personally I see no value in converting to base 2 at the beginning.
    Step 1: 16^4(16-1)
    Then just calculate 256 * 256 * 15. It’s tedious but not too bad.

    • @MarioCindric
      @MarioCindric หลายเดือนก่อน +21

      Thank you, my thoughts also. I was watching this and thought what the hell is he doing.

    • @mainulhusainkhan1333
      @mainulhusainkhan1333 หลายเดือนก่อน +3

      Yes

    • @toniodmonio
      @toniodmonio 23 วันที่ผ่านมา +3

      Agreed. Coming from computer tech its essentially 16 bit thus 65,536 then multiply it to 15. Its ending with 5 thus its not too hard of a multiplication.

    • @philipwatson2407
      @philipwatson2407 22 วันที่ผ่านมา +1

      Not even all that tedious, to those of us old enough to have been drilled extensively in long multiplication at the age of seven.

    • @reneperrin1628
      @reneperrin1628 20 วันที่ผ่านมา +4

      Exactly what I did. No point in the extra factoring.

  • @JakaMarinsek
    @JakaMarinsek หลายเดือนก่อน +187

    if this is Harvard entrance exam, I am seriously worried about US education system.

    • @rashel1
      @rashel1  หลายเดือนก่อน +3

      No

    • @jimmyniful
      @jimmyniful หลายเดือนก่อน +4

      For real

    • @toutenkhamon
      @toutenkhamon หลายเดือนก่อน +7

      🤣🤣🤣🤣Indeed it is toooooooooooooooooooooooooooooooooooooo simple 16⁵-16⁴=15*16⁴

    • @Summersault666
      @Summersault666 หลายเดือนก่อน +2

      Don't worry they get all Nobel prizes...

    • @oscarsantas6528
      @oscarsantas6528 หลายเดือนก่อน +1

      Jajajaja..yo no estoy preocupado, pero si que su educación es una de las peores...no saben que inventar¡¡¡ es absurdo este problema, se lo está inventando...así les va¡

  • @gbottesini
    @gbottesini หลายเดือนก่อน +44

    This took longer than just multiplying 16 by 16 a bunch of times

  • @JackRussell021
    @JackRussell021 หลายเดือนก่อน +29

    Do it in hexadecimal. 0x100000 - 0x10000 = 0xf0000. There's your answer.

    • @valuemastery
      @valuemastery หลายเดือนก่อน +1

      And now to convert it to decimal, simply calculate 15*65536.

    • @MarcPetersson-ak67
      @MarcPetersson-ak67 9 วันที่ผ่านมา +1

      @JackRussell021 now that's genius in simplicity

  • @satanbane
    @satanbane หลายเดือนก่อน +34

    Coming from a computer engineering background, simpler to me to view as 16^2 = 256 and 256^2 = 65536, so 65536 * 16 - 65536, or 65536 * 15.

    • @satanbane
      @satanbane หลายเดือนก่อน +5

      ...and also being familiar that 65536 / 2 = 32768, to calculate on paper I'd go with 655360 + 327680.

    • @RammSkz
      @RammSkz หลายเดือนก่อน +1

      I'm not so sure why you'd use those 16^2 and 256^2, and not go straight to (2^16)*15 since I having studied programming a couple decades ago still do remember powers of 2 till 16th.

    • @satanbane
      @satanbane หลายเดือนก่อน

      @@RammSkz Yes, I quite agree, I was just laying it out in simpler steps. I don't know where this fellow gets these little puzzles; frankly I'm doubtful that they are "entrance exams" for a place like Harvard, but if so, shame on Harvard because a question like this with all the power-of-2 emphasis is blatantly biased towards people with a pre-existing computer background!

    • @Sergey-Primak
      @Sergey-Primak 28 วันที่ผ่านมา

      0b1111 0000 0000 0000 0000

    • @bungkusi2432
      @bungkusi2432 13 วันที่ผ่านมา

      ​@@RammSkz
      This is what i had in mind that should be the answer at first
      I'm surprised that he really did the calculation

  • @joejurneke9576
    @joejurneke9576 หลายเดือนก่อน +44

    A long way to solve a simple equation!

    • @valuemastery
      @valuemastery หลายเดือนก่อน +3

      And it's not even an equation to be solved. It's just an expression to be calculated.

    • @lk6789
      @lk6789 หลายเดือนก่อน

      What's the easy way????

    • @chartedtravel1776
      @chartedtravel1776 11 วันที่ผ่านมา

      If you from Harvard you don’t look for simple solutions you need to show everyone why you have the diploma

    • @lk6789
      @lk6789 11 วันที่ผ่านมา

      @@chartedtravel1776 That's why the USA is crap at inventing things. Oxford.

    • @PizzaCraving
      @PizzaCraving 10 วันที่ผ่านมา

      @@lk6789factor out 16 to the fourth power. This leaves 16-1=15. 16 to the fourth power times 15=983040. Easy peasy!

  • @snickerbobble
    @snickerbobble หลายเดือนก่อน +8

    For the final step, a neat trick I've learned for subtracting from a big number with several zeroes at the end is to subtract 1 from both numbers. That way you don't have to borrow a digit continuously.
    1024000 - 40960 would become:
    1023999 - 40959
    You wouldn't have to borrow until you get to the 4 of the second number.

  • @TheNizzer
    @TheNizzer หลายเดือนก่อน +10

    Simple factorisation yields 16^4x15. No serious University wants a prospective top undergraduate to do arithmetic. 256x256x15. What’s the point?
    Far more interesting question, given f(x)=x^n-x^(n-1), what does f(x) look like, n is even, n is odd, n>1 and is an integer. x is real.

    • @myroslavprotsiv9925
      @myroslavprotsiv9925 29 วันที่ผ่านมา

      f(x)=x^n-x^(n-1) --> f(x)=(x^(n-1))*(x-1) if you ever had to solve a problem like that, it's not hard at all. you have a formula for it x^a - x^b = x^a(1-x^b/x^a) or x^b(x^a/x^b-1)
      16^4 * 15 is the same as 16^5 * 15/16

  • @gavintillman1884
    @gavintillman1884 หลายเดือนก่อน +6

    2^20-2^16 = (2^10)^2 - (2^8)^2 = (2^10+2^8)(2^10-2^8) by difference of squared formula = (1024+256)(1024-256)=1280x768=983040

  • @janos5555
    @janos5555 หลายเดือนก่อน +14

    You don't need the first part with basing it of two. You can directly change it to 16^4*15 and from there I would just go brute force. 16^2=256 anyone should know this if he taking this test, so it is basically just 256*256.
    Most people probably know 2^n for n up to 16 or something this would basically solve it instantly and *15 is of course really easy.

    • @mattgriffin8383
      @mattgriffin8383 12 วันที่ผ่านมา

      Every programmer knows 2^16 = 65,536. We've all accidentally blown up an integer counter at some point...

  • @tanoncesi
    @tanoncesi หลายเดือนก่อน +10

    1) 16
    2) 16 x 16 = *256*
    3) 16 x 256 = *4.096*
    4) 16 x 4.096 = *65.536*
    5) 16 x 65.536 = *1.048.576*
    1.048.576 - 65.536 = *983.040*

  • @nitassuriyakan6162
    @nitassuriyakan6162 หลายเดือนก่อน +11

    16^5 −16^4 =16^4 ⋅(16−1)=16^4 ⋅15
    ; 16^4 = 65536
    and 65536⋅15=983040

  • @robme9845
    @robme9845 หลายเดือนก่อน +7

    Harvard does not have an “entrance” exam. Like every other university in USA it uses standardized SAT exams to evaluate applicants.

  • @mohammadchowdhury9624
    @mohammadchowdhury9624 26 วันที่ผ่านมา +20

    That is the dumbest math operation I have ever seen!!!! It is simply 16 to the power 4 common times (16-1) which is simply 16 to the power 4 times 15 and that is 983040.

  • @d.2940
    @d.2940 หลายเดือนก่อน +18

    Ridiculous. It is as simple as 16^4*1*. Why all those extra calculations?

  • @eprzepiora
    @eprzepiora 11 วันที่ผ่านมา +1

    16^5-16^4=16^4(16-1)=15*16^4 .............. calculated in 5 seconds

  • @enoughisenough3710
    @enoughisenough3710 หลายเดือนก่อน +14

    I'll just use a calculator

  • @valuemastery
    @valuemastery หลายเดือนก่อน +2

    16^5-16^4 =
    2^20-2^16 =
    2^10*2^10-2^16 =
    1024*1024-65536 =
    983040
    Just one simple multiplication and a substraction. If you can't do this by hand, go back to school.

  • @DeclanMBrennan
    @DeclanMBrennan หลายเดือนก่อน +2

    If they didn't specify a base for the answer, it's just F0000 in hexadecimal.

  • @divVerent
    @divVerent 11 วันที่ผ่านมา

    My way:
    Factor out: 16^4 * 15
    Recognize: 16^4 = 65536
    Calculate: 65536 * (10 + 5) = 655360 + 327680 = 983040
    It helps to know the powers of two; need them for bitflags when programming anyway.
    Also times 5 is just half and add a zero :)

  • @ytsimontng
    @ytsimontng 29 วันที่ผ่านมา +2

    16^4×16-16^4=16^4×15=2^16×15=65536×15=655360+327680=983040
    20 seconds if you know 2^16=65536

  • @C-H1
    @C-H1 หลายเดือนก่อน +4

    16^5 = (16^4)*16 ….. therefore …. 16^5 -16^4 = 16^4*(16-1) =(16^4)*15….

  • @cpobyrne1
    @cpobyrne1 หลายเดือนก่อน +2

    or more generally, (n^x+1) - (n^x) = n-1(n^x)

  • @jean-noellarge1047
    @jean-noellarge1047 หลายเดือนก่อน +5

    16^4 (16-1) = 256x256 x15

  • @ThomasD66
    @ThomasD66 12 วันที่ผ่านมา +1

    16^5 - 16^4 = x
    16(16^4) - 16^4 = x
    16(16^4) - 16^4 / 16^4 = x/16^4
    16-1 = x/16^4
    15 = x/16^4
    15(16^4) = x

  • @user_uif_ghg_wer_das
    @user_uif_ghg_wer_das 10 วันที่ผ่านมา

    Guy never fails to amuse me.

  • @mtsaz100
    @mtsaz100 หลายเดือนก่อน +2

    When I went to mit and I applied to Harvard and all the ivy schools in late 70s zero had an entrance exam. They looked at my act (that’s what I took in high school) now the sat is used and I had to write an essay on application and do an interview.
    No Ivy League or mit has an entrance exam. There are tests to place you after acceptance but optional like every university. Some kids totally bypassed calculus because they aced it (not me) but they get 10s of thousands of applications and it would be a nightmare to give entrance exams to all of them. It’s a ridiculous idea. And then to put some 9th grade algebra problem on it is even dumber. Maybe this is for some bogus Harvard mail order university. Not the real one.

  • @BollyFan2-ue6cq
    @BollyFan2-ue6cq 27 วันที่ผ่านมา +1

    16^5 - 16^4
    = 16^4 (16 - 1)
    = (2^4)^4 * 15
    = 2^16 * 15
    = 2^10 * 2^5 * 2 * 15
    = 1024 * 32 * 30
    = 1024 * 960
    = (1000 + 24) * (100 - 4) * 10
    = (100000 - 4000 + 2400 - 96) * 10
    = (100000 - (4096 - 2400)) * 10
    = (100,000 - 1,696) * 10
    = (98,304) * 10
    = 983040

  • @josephmovil
    @josephmovil 20 วันที่ผ่านมา

    16^5- 16^4 , supongamos que a = 16 entonces la ecuacion quedaria a^5-a^4 = a^4*a - a^4 y si b = a^4 entonces quedaria b*(a -1) = y sustituyendo el valor de a = 16 entonces seria b*(16-1) = b*15 = 15b multiplicariamos entonces los valores con el resultado 15b = 15 * a^4 = 15 * 16 * 16 * 16 * 16 = 983040 .. Mas simple... Obvio con la cacluldadora solo basta presionar los botones ... jejejeje

  • @josephmovil
    @josephmovil 20 วันที่ผ่านมา

    Con los mismos Valores seria 16^5-16^4 = 16^4*16 - 16^4 = 16^4(16-1) = 16^4*15, lo bonito de la matematicas es el que aprendes a utilizar logica que aplicaras toda la vida para resolver problemas de la vida real, somos seres analiticos

  • @Mrfarajyy
    @Mrfarajyy 18 วันที่ผ่านมา +1

    You choose the long road, what if I told you that the solution is in two lines?

  • @jimhammill3584
    @jimhammill3584 27 วันที่ผ่านมา +1

    16^5 = 16 * 16^4.
    16*16^4 - 1*16^4 = 15* 16^4
    16^4 = 65536
    15 * 65536 = 983040.

  • @RSchef
    @RSchef 25 วันที่ผ่านมา

    This is not an equation, but an expression. Then the follower arrow and the equal sign are confused. Brackets are different sizes. There are no squares on the paper.

  • @MGA19a
    @MGA19a หลายเดือนก่อน +5

    Unnecessary complications 😂

  • @brettonmaybee
    @brettonmaybee หลายเดือนก่อน +1

    16-1=x/16^4 => 15(16^4)=x => 983040=x there I made it easy

  • @AR-bl2hx
    @AR-bl2hx หลายเดือนก่อน +1

    Nice write up
    Btw, I don’t think I’ve ever seen number 4 and 9 being written the way you do it

  • @bernabejulio
    @bernabejulio หลายเดือนก่อน +1

    16⁵ - 16⁴ = 16⁴×( 16-1) = 16⁴ × 15 ✓

  • @lutzfilor8253
    @lutzfilor8253 11 วันที่ผ่านมา

    The number of steps is unnecessary
    16^5 - 16^4
    = (16 - 1 ) * 16^4 = 15 x 16^4
    = (15 * 16 * 16 * 16) * 16 | from here on it is simple addition and multiplication
    = 240 * 256 * 16 | problem of large number multiplication - but easy if you know the power of two
    = (51200 + 10240) * 16 | from here it is only grunt work only showing the elimination of one operator at a time.
    = 61440 * 16 = 61440 * ( 15 + 1 )
    = 614400 + 307200 + 61440
    = 614400 + 368640
    = 983040

  • @lefebvrem4182
    @lefebvrem4182 13 วันที่ผ่านมา

    In other words, Harvard’s law is “Why do it simple when it can be made complex"

  • @flemlion13
    @flemlion13 11 วันที่ผ่านมา

    It's quicker to calculate (16-1)*16p4 as 16p5=16*16p4

  • @zedk12s
    @zedk12s 11 วันที่ผ่านมา

    We don’t need children to be fast in math, calculators are fast, we need children to be thinkers - Dr Yeap Ban Har

  • @phanisrikari7306
    @phanisrikari7306 หลายเดือนก่อน +2

    Take 16^ 4 as common then we get 16^4×15
    2^4×8^4×15
    16×15×8^4
    240×8^4
    240×2^12
    24×10×(2^6)2
    24×10×64×64
    983040

  • @croc1648
    @croc1648 10 วันที่ผ่านมา

    I've interviewed with Harvard, they don't give you a math test. You interview with alumni based in your area who participate in their interview process. there are no test

  • @oov55
    @oov55 หลายเดือนก่อน +1

    what an insult to the many great mathematicians in Italian history

  • @AtefFarrouki
    @AtefFarrouki 19 วันที่ผ่านมา

    more reasonable to stop at 960 *1024 and simply say
    960 K_Bytes.

  • @RadenVijaya
    @RadenVijaya 26 วันที่ผ่านมา +1

    Computer scientist here: it's 1 megabyte - 65536
    It's not that hard.

  • @JoostMehrtens
    @JoostMehrtens 11 วันที่ผ่านมา

    16^5-16^4=
    (16-1)*(16^4) =
    15*2^16=
    15*2^6*2^10=
    15*64*2^10~1000*1000=
    1.000.000 give or take 5%

  • @xyzp192
    @xyzp192 29 วันที่ผ่านมา +1

    16*4 common lelo 4 stap me answer Aa jayega

  • @MichaelStanwyck
    @MichaelStanwyck 11 วันที่ผ่านมา

    carefully explains his work calculating 64x5 and then just casually writes the answer to 1024x40

  • @awax43
    @awax43 15 วันที่ผ่านมา

    16^5 -- 16^4 = 16^4(16 -- 1) = 15*16^4 = 15* 16^2 * 16^ 2 = 15*256*256 = 983,040

  • @raghvendrasingh1289
    @raghvendrasingh1289 หลายเดือนก่อน +1

    15(16^4)
    = 15(2^16)
    = 15(1024)(64)
    = 15360(60+4)
    = 921600+61440
    = 983040

  • @josephmovil
    @josephmovil 20 วันที่ผ่านมา

    Con los mismos Valores seria 16^5-16^4 = 16^4*16 - 16^4 = 16^4(16-1) = 16^4*15

  • @SkeeterHawkins
    @SkeeterHawkins หลายเดือนก่อน +1

    A computer can solve this problem in a nanosecond....humans (including those who matriculate at Harvard) have painfully slow processing skills. This video is prima facie evidence that this is so.

    • @ddal3998
      @ddal3998 หลายเดือนก่อน

      It's not about who solves faster, it's about developing mathematical mind.

    • @jamesreed1969
      @jamesreed1969 หลายเดือนก่อน

      ​@@ddal3998hmmm, i feel like some students at harward and other colleges care more about antisemitic hysteria than study.....

    • @SkeeterHawkins
      @SkeeterHawkins หลายเดือนก่อน

      @@ddal3998 Indeed, BUT computers have mathematically superior intelligence than us mere humans. The future of mathematics will fabulously favor the computer to the drudgingly slow mental processes of our species...no matter how gifted or developed the individual's mind.

    • @SkeeterHawkins
      @SkeeterHawkins หลายเดือนก่อน

      @@jamesreed1969 🤭

  • @agricolaurbanus6209
    @agricolaurbanus6209 11 วันที่ผ่านมา

    While at Hogwarts University you just need a magic wand and the spell "Solutio Equatio"😉

  • @DavidVonR
    @DavidVonR หลายเดือนก่อน +2

    I did this in my head in under 1 minute.

    • @valuemastery
      @valuemastery หลายเดือนก่อน +1

      That's cheating, you saved the time for writing 😅

  • @ingediana
    @ingediana 16 วันที่ผ่านมา

    I guess it's simpler to just multiply 16, 5 times, then substract the 16⁴ since its already counted. 😂

  • @sh-one-77
    @sh-one-77 หลายเดือนก่อน +1

    Solve the equetion please 1/(x-1)^2+1/(x-2)^2=1/x^2

    • @TheNizzer
      @TheNizzer หลายเดือนก่อน

      Straight forward post 16 algebra question. Nowhere near undergraduate level. You’d expect the solver to state undefined for x=0, 1, 2 as well.

  • @АнатолийКупреев-б4ц
    @АнатолийКупреев-б4ц 26 วันที่ผ่านมา +1

    16'4*15=256*256*15=15(51200+12800+1536) =65536*15=655360+327680=983040

  • @ioannisimansola7115
    @ioannisimansola7115 หลายเดือนก่อน +6

    Much ado about nothing

  • @josephlarrew
    @josephlarrew 11 วันที่ผ่านมา

    I initially tried to do this with 2^5 - 2^4 and got the answer 2^4. So I thought the answer would be 16^4. Turns out it isn't the same for base 16 as it is for base 2, lol. Still, it's kinda funny that 2^5 - 2^4 = 2^4.

    • @josephlarrew
      @josephlarrew 11 วันที่ผ่านมา

      And I just realized why as well. If you do the same factoring as 16^4(16-1), you get 2^4(2-1), which as you can see is just 2^4(1), lol.

  • @ahsenserhat9270
    @ahsenserhat9270 11 วันที่ผ่านมา

    When you realize it's not 16, it's easy.

  • @alopatin
    @alopatin 29 วันที่ผ่านมา +1

    А мы это в школе в 9 классе делаем...

  • @dennisliebig7622
    @dennisliebig7622 25 วันที่ผ่านมา

    16*16*16*16*15=256*256*15, 3 till 5 th year elementary school class. Harvard ?

  • @piotrkulinski922
    @piotrkulinski922 หลายเดือนก่อน +1

    What?? x=16^4, so x(16-1), so 15*16^4

  • @BeSeNik
    @BeSeNik 9 วันที่ผ่านมา

    16^5-16^4=16^4*(16-1)=16^4*15=2*2^10*2^5*3*5=2*5*3*2^10*2^5=10*3*1024*32=30*32*1024=960*(1000+24)=960000+960*20+960*4=960000+19200+3840=960000+23040=983040...

  • @hvnterblack
    @hvnterblack 14 วันที่ผ่านมา

    15 y/o should be able to solve it. As a Harvard question, it is simple.

  • @palattilahu
    @palattilahu หลายเดือนก่อน +1

    =16^4×15. ////

  • @amigoscanariosdeclashofclan
    @amigoscanariosdeclashofclan 26 วันที่ผ่านมา +1

    Nice

    • @rashel1
      @rashel1  26 วันที่ผ่านมา

      Thanks

  • @PandLNick
    @PandLNick 25 วันที่ผ่านมา

    This is about the most complicated way to solve this!

  • @datalore6187
    @datalore6187 21 วันที่ผ่านมา

    This was...interesting. But are you sure you didn't use too many steps?

  • @itsjavaman
    @itsjavaman 17 วันที่ผ่านมา

    Why didn't you simply convert everything to single numbers at the beginning? University should be capitalized!

  • @cursivewrittingbyaishashai471
    @cursivewrittingbyaishashai471 13 วันที่ผ่านมา

    And solution is primary class level of india

  • @LarsEllerhorst
    @LarsEllerhorst 2 วันที่ผ่านมา

    16^5 - 16^4 = 16 * 16^4 - 16^4 = 15 * 16^4

  • @ElliotSeigler-u9b
    @ElliotSeigler-u9b หลายเดือนก่อน +1

    I can solve this in 30 seconds on my phone calculator..lol

  • @uplink-on-yt
    @uplink-on-yt 9 วันที่ผ่านมา

    3:08 He realises that 64*5 is just half of 64*10 in 3... 2... 1...

  • @kurtdobson
    @kurtdobson หลายเดือนก่อน +1

    I just use Matlab…

  • @rikybanlieue4810
    @rikybanlieue4810 หลายเดือนก่อน +3

    ça fait 16⁴(16-1) =15x16⁴ = 15x2¹⁶ = 65536x15 = 983040

  • @francistorchio
    @francistorchio 25 วันที่ผ่านมา

    Much too long to calculate. Try factoring: 16**5 - 16**4 = 16**4(16 - 1) =16**4 * 15 = 983,040.

  • @alho9231
    @alho9231 14 วันที่ผ่านมา

    What language is this vid in?

  • @EricDunn-ci3ks
    @EricDunn-ci3ks 16 วันที่ผ่านมา

    Well, if you're absolutely set on doing it the complicated way ...

  • @manjubhargavv
    @manjubhargavv 22 วันที่ผ่านมา

    When in my exam paper they mentioned write solution in 10-15 steps i will do this 😂😂😂

  • @danicaguran281
    @danicaguran281 หลายเดือนก่อน +2

    Warum so kompliziert?!?

  • @АнатолийКупреев-б4ц
    @АнатолийКупреев-б4ц 26 วันที่ผ่านมา

    16'5-16'4=16'4(16-1) =16'4*15

  • @khaledalsaoub6760
    @khaledalsaoub6760 14 วันที่ผ่านมา

    It's too easy to be solved what you called it Harvard University equation

  • @zaphod05
    @zaphod05 27 วันที่ผ่านมา +1

    Uuh, Harvard Elementary School.

  • @Rene_Christensen
    @Rene_Christensen 11 วันที่ผ่านมา

    16^5-16^4=16*16^4-1*16^4=15*16^4. Who cares what the actual number is.

  • @johndepledge1811
    @johndepledge1811 13 วันที่ผ่านมา

    That is NOT an equation. It is an expression, there is nothing to solve.

  • @Sabri1729
    @Sabri1729 25 วันที่ผ่านมา

    youtube should active an IQ donation option for channels like these.

  • @abeonthehill166
    @abeonthehill166 12 วันที่ผ่านมา

    So one of the Earth’s top 10 Universities ask that level 3 question as an entrance test …..?……..to study a degree requiring an excellent knowledge of Maths ?
    Surly this cannot be the case ?

  • @edithslho6467
    @edithslho6467 หลายเดือนก่อน +7

    too complicated 😢

    • @boeubanks7507
      @boeubanks7507 หลายเดือนก่อน

      Not really. If you are doing mental math, these are the steps you go through. He just wrote it down. People tend to work with round numbers more easily. So he was just converting everything to round numbers until the end. However, this approach only makes sense if you don't have a calculator. If you do, then this entire exercise is irrelevant.

  • @subhankartripathi-df8gt
    @subhankartripathi-df8gt 27 วันที่ผ่านมา +1

    😂😂😂😂😂

  • @kirkjohnson6638
    @kirkjohnson6638 12 วันที่ผ่านมา

    (15/16) x 16^4.

  • @srijaduttachowdhury3056
    @srijaduttachowdhury3056 4 วันที่ผ่านมา

    I am shocked by seeing this kind of questions !

  • @BernardoFlor_Krio
    @BernardoFlor_Krio 11 วันที่ผ่านมา

    Me, 16x16 five times minus the 16x16 four times

  • @StephenMarkTurner
    @StephenMarkTurner หลายเดือนก่อน +1

    Harvard? I have my doubts.

    • @rashel1
      @rashel1  หลายเดือนก่อน

      its trending tag😊

  • @nesthi
    @nesthi 10 วันที่ผ่านมา

    🤘

  • @aidenwrenn5342
    @aidenwrenn5342 12 วันที่ผ่านมา

    (16*16*16*16*16)-(16*16*16*16)

  • @wsurfer2147
    @wsurfer2147 14 วันที่ผ่านมา

    Why so complicated ? should be 15 x 256^2.

  • @VincenzoBarbato
    @VincenzoBarbato หลายเดือนก่อน +1

    this guy would not have made it imtui Harvard, he couldn't do 16^4 * 15? really?

  • @saurabhpatel1535
    @saurabhpatel1535 12 วันที่ผ่านมา

    Why are unnecessarily increasing no. of steps😂