The Most Difficult Program to Compute? - Computerphile

แชร์
ฝัง
  • เผยแพร่เมื่อ 31 พ.ค. 2024
  • The story of recursion continues as Professor Brailsford explains one of the most difficult programs to compute: Ackermann's function.
    Professor Brailsford's programs: bit.ly/1nhKtW4
    Follow Up Film from the Prof in response to this film: • Ackermann Follow Up - ...
    What on Earth is Recursion?: • What on Earth is Recur...
    Fibonacci Programming: • Fibonacci Programming ...
    Heartbleed, Running the Code: • Heartbleed, Running th...
    VR Series: COMING SOON!
    Please note, Ackermann is spelled incorrectly with one "n" on the title plate - Apologies
    / computerphile
    / computer_phile
    This video was filmed and edited by Sean Riley.
    Computer Science at the University of Nottingham: bit.ly/nottscomputer
    Computerphile is a sister project to Brady Haran's Numberphile. See the full list of Brady's video projects at: bit.ly/bradychannels

ความคิดเห็น • 2.1K

  • @steveskidude
    @steveskidude 8 ปีที่แล้ว +2963

    He's could be the David Attenborough of computer science. "...And here, we observe the C++, in its natural habitat..."

    • @rykehuss3435
      @rykehuss3435 7 ปีที่แล้ว +52

      Nailed it

    • @xplinux22
      @xplinux22 7 ปีที่แล้ว +260

      "As you can see, this young male stack frame is prowling through the forest of dense, tangled registers calling for a mate. Alas, with the stack currently empty, his efforts are unfortunately futile."
      *cue safari music*

    • @TampaCEO
      @TampaCEO 6 ปีที่แล้ว +14

      That's who he reminds me of!

    • @douwehuysmans5959
      @douwehuysmans5959 5 ปีที่แล้ว +47

      "but alas, the buffer overflowed and as you see can see the instruction pointer makes a miraculous jump towards the kernel"

    • @JamesSpeiser
      @JamesSpeiser 5 ปีที่แล้ว +2

      hahaha

  • @harrynewton4786
    @harrynewton4786 8 ปีที่แล้ว +1053

    i don't alwys use recursion...but when i use recursion i don't always use recursion.

    • @RKBock
      @RKBock 6 ปีที่แล้ว +155

      to understand recursion, you must first understand recursion

    • @shadowagent3
      @shadowagent3 5 ปีที่แล้ว +35

      @@RKBock to write a recursive function you must first write a recursive function to write a recursive function

    • @nandkishorenangre3541
      @nandkishorenangre3541 5 ปีที่แล้ว +9

      @@shadowagent3 To write a recursive comment some one else must add up the next recursive comment

    • @JamesSpeiser
      @JamesSpeiser 5 ปีที่แล้ว +7

      holds beer

    • @mohamedb737
      @mohamedb737 4 ปีที่แล้ว +4

      the only way to understand recursive function is to do it recursively

  • @christianherrera4729
    @christianherrera4729 8 ปีที่แล้ว +1437

    Absolutely fascinating. I can only imagine how much more fascinating it would be if i knew what he was talking about.

    • @Firestar-rm8df
      @Firestar-rm8df 7 ปีที่แล้ว +32

      basically it's interesting if you like studying theoretical software. It's some interesting concepts, but it's utterly useless for actually writing software. This would do essentially the same thing:
      #include
      .
      .
      .
      double time;
      increase(time, time);
      sleep( time );
      .
      .
      .
      double increase( double time, double temp_time)
      {
      time = pow(2, increase(time, temp_time-1);
      return time;
      }
      it's clunky but I'm not going to bother optimizeing and cleaning it up. it basically sleeps for 2^time!, or two raised to time factorial.
      Edit: at least as far as wasting cycles it would behave simularly

    • @SteveUrlz
      @SteveUrlz 7 ปีที่แล้ว +6

      lol, same

    • @sidharthcs2110
      @sidharthcs2110 6 ปีที่แล้ว +3

      Christian Herrera
      So I'm not alone

    • @Confucius_76
      @Confucius_76 5 ปีที่แล้ว

      yes! loved it though

    • @Ligma_Male-ub1ud
      @Ligma_Male-ub1ud 5 ปีที่แล้ว +1

      Low key just copied and pasted this into an ide I’m in CS1 , but changing my degree plan after this semester

  • @keistzenon9593
    @keistzenon9593 8 ปีที่แล้ว +182

    I once tried to compute just a slightly bigger ackerman call like ack(3,3) computed in an instance and I tried ack(3,4) i think, but it exhausted the call stack. So I wrote the expansion to disk, to parse the deferred chain. The whole computation, even though it was just text, created a 10gb textfile while the slightly smaller call ack(3,3) just needed about 15lines of deferred chains.
    gives you a feeling of how insanely fast the output grows. This is due to the ackerman function actually abstracting hyperoperation. Where ack(3,3) was exponentiation, ack(3,4) was tetration. To put it simply: it is rasing exponentiation itself to a power. Then ack(3,5) would be even more extreme, a pentation - rasing the rasing of exponentation to a power, or just rasing tetration to a power.

    • @brandenjames2408
      @brandenjames2408 8 ปีที่แล้ว +51

      Keist Zenon just to blow your mind even more, pentation isnt raising tetration to a power, its raising tetration to a tetration

    • @oliviapalmu5585
      @oliviapalmu5585 8 ปีที่แล้ว +6

      So it acts like Graham's number?

    • @carbrickscity
      @carbrickscity 2 ปีที่แล้ว +7

      Similar, but Graham is kinda one level above Ackermann.

    • @DenisovichDev
      @DenisovichDev 2 ปีที่แล้ว

      I wrote 3, 4 in C and it was actually instantaneous. Although 4, 4 caused a buffer overflow

    • @macchiato_1881
      @macchiato_1881 ปีที่แล้ว +2

      @@DenisovichDev he was parsing the deferred chains. You didn't so that why yours was instant.

  • @d_9696
    @d_9696 9 ปีที่แล้ว +472

    Ack(-1, -1); ... The thread running this code has never been seen again.

    • @lukitree
      @lukitree 9 ปีที่แล้ว +15

      Herp Derpington
      haha, yeah gotta add error checking in there
      ...
      #include
      ...
      assert (m >= 0 && n >= 0);
      ...

    • @321671999
      @321671999 8 ปีที่แล้ว +6

      lukitree don't use tho, use

    • @OverSoft
      @OverSoft 8 ปีที่แล้ว +32

      Herp Derpington Define the int's as uint and it'll protect you from this nonsense. :P

    • @MrMiljaker
      @MrMiljaker 8 ปีที่แล้ว +21

      +Herp Derpington
      Actually, I still think it would terminate, because once m and n get small enough, the sign bit will flip and suddenly we're back at a positive number.

    • @jakubcislo8029
      @jakubcislo8029 6 ปีที่แล้ว +2

      Nah, it just produces StackOverflowError.

  • @nathansmith3608
    @nathansmith3608 8 ปีที่แล้ว +515

    I checked the size of 3 * 2 ** 65333 in python
    the number itself is 280 lines in windows powershell

    • @EmptyKingdoms
      @EmptyKingdoms 4 ปีที่แล้ว +56

      And it probably just filled the final lines with a bunch of zeroes because it cannot compute that large an integer.

    • @dramforever
      @dramforever 4 ปีที่แล้ว +60

      @@EmptyKingdoms Python can

    • @EmptyKingdoms
      @EmptyKingdoms 4 ปีที่แล้ว +10

      @@dramforever using what tools?

    • @dramforever
      @dramforever 4 ปีที่แล้ว +162

      ​@@EmptyKingdoms For the purpose of explaining, consider this: In principle, you can represent a large number by its digits, and turn the multiplication with pencil and paper method ('schoolbook multiplication') into a program. It can handle anything that your computer can store. (280 lines of characters is like *nothing* compared to GBs of RAM) It won't be fast, but it shouldn't be too slow either. Now you can just start from 3 and keep multiplying by 2, which is again slow but shouldn't be unbearable. (You can even specialize and just write a 'multiply by single digit number' function) There are faster ways to do multiplication (google 'integer multiplication algorithm'), and also for exponentiation, but I'm not really familiar with those, but they are pretty well researched by others so maybe just consult what others already wrote.
      But actually, big integer implementations, or arbitrary precision integer implementations (look ma, no precision loss for final digits) use binary internally (bytes and words are just chunks of binary bits). 3 * 2**65533 is really neat in binary, so the real deal is converting it to decimal. Again, someone else already figured it out like ages ago. Just google 'radix conversion algorithm'.
      But why computers sometimes can't handle large numbers? Because really they just can't handle them *fast*. Like *real* fast. Your CPU has dedicated *hardware* circuitry to handle not too large integers and not too wild floats, so that if your program does not need 'weird' computation like computing a very large number it ends up blazingly fast, and most programs actually do just need normal numbers.

    • @EmptyKingdoms
      @EmptyKingdoms 4 ปีที่แล้ว +23

      @@dramforever thank you.

  • @christophernugent8492
    @christophernugent8492 5 ปีที่แล้ว +85

    Sir, thank you for this. From app engineers to web developers, I’ve always felt that it is vitally important for programmers to study the mathematical properties that make our projects work. To do otherwise, to me, is like trying to be a materials engineer without having an understanding of the physical and chemical properties of your raw materials.

  • @polygonofficial1143
    @polygonofficial1143 10 ปีที่แล้ว +27

    this dude's voice is absolutely soothing.

  • @NemosChannel
    @NemosChannel 9 ปีที่แล้ว +196

    "and within that VILE second argument.."
    This is too funny! I like this guy.

  • @themennissvids
    @themennissvids 10 ปีที่แล้ว +61

    g64 is graham's number (see one of Brady's other videos). I first saw Ack(g64, g64) in an xkcd comic though. So you're looking at a number created through superexponential means, fed into a function that has a super exponential time complexity.

    • @MrKastle09
      @MrKastle09 10 ปีที่แล้ว +19

      Graham's number is insane. But the most amazing thing is that the only thing bigger than Graham's Number ... is yo momma XD

    • @Garbaz
      @Garbaz 10 ปีที่แล้ว +2

      Thats gonna be fun :D
      It will stop calculating even before you really startet the ackerman part...

    • @themennissvids
      @themennissvids 10 ปีที่แล้ว +4

      Krisna Siv Nope, there's a thread on the xkcd forums called "My Number is Bigger!", they've found numbers that make my mother look negligible.

    • @hexagonist23
      @hexagonist23 2 ปีที่แล้ว +1

      What about Ack(TREE(g64),TREE(g64))

  • @elias551
    @elias551 ปีที่แล้ว +5

    It's been 15 years I'm working professionally in computer science, writing code and doing something useful with it, thinking that I'm kind of understanding how it all works, from the theory of electronics, to the end user using it, I'm mind blown that some mathematician from the early 20s have already thought of all of this. Plus kudos to mr Brallsford explaining it like it's some basic course by its concise explaination. Love from France

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

    You know you're a true mathematician when you get scared by how big a number can get.
    Also makes you appreciate how big infinity actually is. It's bigger than any ack out there.

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

      any ack out there is finite, regardless of how big it is. Infinity on the other hand literally means not finite.

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

      Well, infinity isn’t bigger than any number. Infinity is an undefined value, so it cannot be compared to numbers. For example, you may be tempted to say that 1/0 is infinity because division by a value extremely close to zero results in an extremely huge number, but it’s technically undefined. The reason why it’s crazy to try to comprehend the “hugeness” of infinity is only because that for any number you come up with, you can always add one to it (or do some crazy operation) and it’s even bigger. It goes from incomprehensible to even more incomprehensible. Just wanted to say that infinity isn’t comparable to numbers, but more just an undefined thing that *does not exist in the set of real numbers.*
      (That’s an obvious fact, but with that in mind, it should also be obvious that saying infinity is bigger than a number is just as senseless as saying infinity is smaller than a number, because they’re apples and oranges.)
      Moreover, since 1/x has the limit of “positive” and “negative” infinity as x approaches zero from the right and left side respectively, that should clearly indicate that there is only one infinity, and that is the state of being undefined, not existing within the set of real numbers. When 1/x shoots down toward “negative” infinity from the left and comes back down from “positive” infinity after x passes through zero, that’s the function 1/x escaping the set of real numbers to a single place, called undefined, and returning to the set of real numbers in the same direction in which it exited.
      That said, infinity seems like it exists on either “end” of the real number line, so that would mean it’s just as correct to say that infinity is smaller than every single number you can think of. But if that was true, then it’s a contradiction. Infinity cannot be both bigger than and smaller than every real number, and hence it does not exist on either end of the real number line. The existence of infinity is entirely outside of the set of real numbers.
      So, finally, infinity cannot be compared to real numbers. It’s not bigger than any ack out there. It’s just that you can construct a number arbitrarily large enough to be bigger than any ack out there, and that’s what is mind-boggling. :)

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

      “It’s longer than you think, dad!”

  • @billruddock
    @billruddock 5 ปีที่แล้ว +30

    It seems that some reductions can be made in the levels of recursion by adding cases for the following:
    ack(1, n) = n + 2
    ack(2, n) = 2*n + 3
    ack(3, n) = 1

    • @KnakuanaRka
      @KnakuanaRka 3 ปีที่แล้ว +2

      Yeah, that’s one way to improve it.

    • @Rudxain
      @Rudxain 2 ปีที่แล้ว +6

      Another optimization is to convert one of the tail-calls into a loop, that leaves us with just 1 recursive call.
      But thanks to your comment I realized there's a simpler way to optimize the A function, define it in terms of a single Hyper-Operation call:
      A(m, n) = HyperOP(m, 2, n + 3) - 3
      Where the 0th argument of HP is the degree or "order" of the HyperOP we want to use, 1st arg is what we want to hyper-operate, and 2nd arg is the number of times to apply the "sub-HP".
      To implement HP efficiently, define it like so:
      HP(0, a, b) = b++ //add 1
      HP(1, a, b) = a + b
      HP(2, a, b) = a × b
      HP(3, a, b) = a ^ b //a ** b
      The general case HP(n, a, b) requires recursion, it can be an implicit or explicit stack. It's essentially HP(n - 1, a, HP(n - 1, a, ...)), with b copies of HP calls, IIRC.
      HP(4, a, b) is tetration, HP(5, a, b) is pentation, etc...
      Before I realized this optimization, I just used the Wikipedia table with all closed-form expressions that didn't require recursion, and used a memoization hash table when recursion was needed. After implementing the HP optimization I realized Wikipedia already mentioned that in the "Definition" section, but I didn't understand the notation before... *bruh*

    • @UNKNOWNKINGTHEGAMER
      @UNKNOWNKINGTHEGAMER ปีที่แล้ว

      try 4,4

  • @loupax
    @loupax 10 ปีที่แล้ว +96

    All the cores in the world won't help you since this C code will run in a single thread. Also the first thing I thought was "wouldn't memoisation help improve performance?"
    After a quick google search, I discovered that "When a software developer learns about the Ackermann function, he will try to see how much of improvement function memoisation does if any". LOL

    • @HebaruSan
      @HebaruSan 6 ปีที่แล้ว

      How much is it?

    • @lagduck2209
      @lagduck2209 6 ปีที่แล้ว +6

      HebaruSan probably at least some, if any

    • @SwissSareth
      @SwissSareth 4 ปีที่แล้ว

      Funnily true ...

    • @sayven
      @sayven 2 ปีที่แล้ว

      can confirm lol

  • @suave319
    @suave319 8 ปีที่แล้ว +154

    I want Professor Brailsford as my lecturer. He's awesome :D

    • @hamza3838
      @hamza3838 6 ปีที่แล้ว +4

      Suave Atore wait is that his name? THATS SUCH A COOL NAME

  • @bangpaf2328
    @bangpaf2328 7 ปีที่แล้ว +44

    9:45
    I reproduced the function in Python and believe I got it right as it gives me the same results, except for ack(4, 1): _"RecursionError: maximum recursion depth exceeded while calling a Python object"_
    lulz at Python

    • @tombeaudry3143
      @tombeaudry3143 7 ปีที่แล้ว +8

      Python, please.

    • @SonnyGhosh
      @SonnyGhosh 7 ปีที่แล้ว +3

      use like Java, c#, c++, etc

    • @kraemer-raimund
      @kraemer-raimund 7 ปีที่แล้ว +14

      You can change the recursion limit in Python.

    • @bangpaf2328
      @bangpaf2328 7 ปีที่แล้ว

      Thanks for the replies. I guess I should have known, I'm still pretty wet behind the ears when it comes to programming.

    • @thomaspappas8946
      @thomaspappas8946 7 ปีที่แล้ว

      +Raimund yes but how?

  • @NikolajLepka
    @NikolajLepka 10 ปีที่แล้ว +91

    You could try writing a memoized version of this code, where it remembers the result of a previous computation, and just plops that result in so it won't have to spend time working that out, cuz it seems to me that that's what's slowing it down so much; that it has to go through the same set of computations again and again
    EDIT: PEOPLE before commenting on why it wouldn't work; please read the other comments! THEY MAY ALREADY HAVE COME TO THE SAME CONCLUSION! Please don't waste precious keystrokes on repeated information, thank you

    • @Poldovico
      @Poldovico 9 ปีที่แล้ว

      But I wanted to know why they didn't, and the comments you refer to aren't on the first page anymore D:

    • @greenya84
      @greenya84 9 ปีที่แล้ว +1

      This i called "Dynamic programming" :)

    • @NikolajLepka
      @NikolajLepka 9 ปีที่แล้ว +1

      Yuriy Grinevich do your research, memoization has its differences

    • @MartinFracker
      @MartinFracker 9 ปีที่แล้ว

      Yuriy Grinevich Memoization is a technique that can be involved in dynamic programming.

    • @hdpasd123lol
      @hdpasd123lol 9 ปีที่แล้ว

      Nikolaj Lepka As far as I know your approach is known as " backtracking " , so for the people saying it wont work , it will. It will indeed make it faster.

  • @sth128
    @sth128 10 ปีที่แล้ว +1146

    It'd be funny if the program returned -1/12.

    • @CircusBamse
      @CircusBamse 10 ปีที่แล้ว +104

      unfortunately it has to be an integer and -1/12 is not so something would've gone wrong, but I do like your thinking though.

    • @son-tchori7085
      @son-tchori7085 10 ปีที่แล้ว +22

      Minox sta
      Some would argue that summing natural integers to infinity would be integer as well... : th-cam.com/video/w-I6XTVZXww/w-d-xo.html

    • @kevinmichelet91
      @kevinmichelet91 10 ปีที่แล้ว +13

      Minox sta summing positive integers is not supposed to be negative. But 1 + 2 + 3 + 4 + 5 + ... = -1/12 (see numberphile)
      So if string theory can incorporate that, why not ?

    • @Falcrist
      @Falcrist 10 ปีที่แล้ว +25

      You only get -1/12 if you go all the way to infinity.
      Whatever stupendous number it puts out will be just as far from infinity as 1.

    • @cemerson
      @cemerson 10 ปีที่แล้ว +1

      Minox sta But adding all the natural numbers must be an integer, right?

  • @SteveGouldinSpain
    @SteveGouldinSpain 10 ปีที่แล้ว +250

    I've been jobbing business focused programmer for over thirty years. I was at college recursion was kind of worshiped by my tutors 'oh look at the elegant code' they would say. When I got in to the business world the number of times recursion was the best solution was about twice in thirty years!

    • @BlackMambo
      @BlackMambo 10 ปีที่แล้ว +5

      Brilliant...!

    • @djdedan
      @djdedan 9 ปีที่แล้ว +15

      u guys never sorted anything? i would assume most sort functions are recursive (of course i could be totally wrong - but then again i could be totally right!)? Or do you mean you never had to write any recursive code?

    • @SteveGouldinSpain
      @SteveGouldinSpain 9 ปีที่แล้ว +23

      Strangely no because whenever I've had data it's been inside a database, so you get the database to sort the data before you get the data out. Or if you get it into a webpage then use methods from a library like jQuery datatables to handle the sorting for you. I've never needed to get my hands dirty sorting. Infact I remeber doing all that sorting stuff at college level and pretty much never having to use it like I never used truth tables or Karnough maps!

    • @djdedan
      @djdedan 9 ปีที่แล้ว +51

      Steve Gould haha yeah - it's the curse (?) of software engineering, learn the nuts and bolts but unless you plan to be an expert on, say sorting, you are better off using someone else's sorting routines - so why learn the nuts and bolts in the 1st place. My answer would be: for job interviews! lol!
      cheers!

    • @SteveGouldinSpain
      @SteveGouldinSpain 9 ปีที่แล้ว +40

      Spot on DjDedan and in fact some the most successful 'programmers' I know hardly write a line of code. They are just very good a cobbling together solutions from other people's work.

  • @DrZale
    @DrZale 9 ปีที่แล้ว +27

    Hi Professor Brailsford! I've really enjoyed all your videos, thank you for taking the time to make them. It has been a couple years for me since graduating, and I miss my senior level computer science classes. Your lectures remind me of why I got in to and love the field... and not for a day job

  • @jonorion5095
    @jonorion5095 10 ปีที่แล้ว +11

    Man I sure love Professor Brailsford, I hang on every word he says. Such a great lecturing voice! Such a wise old wizard.

  • @dplameras
    @dplameras 3 ปีที่แล้ว +13

    I love listening to Professor Brailsford because it makes me realise, that I'm not that smart and there are so many more interesting things to learn.

  • @TheALPHA1550
    @TheALPHA1550 7 ปีที่แล้ว +130

    Ah, nothing like theoretical computer science.

  • @nand3kudasai
    @nand3kudasai 9 ปีที่แล้ว +358

    the result will probably be 42

    • @fuppetti
      @fuppetti 9 ปีที่แล้ว +14

      Jerónimo Barraco Mármol
      ack(ack(life, universe),ack(everything, douglasadams))

    • @truthseeker7497
      @truthseeker7497 8 ปีที่แล้ว +3

      +Jerónimo Barraco Mármol
      A distinct possibility. What was the question?

    • @nand3kudasai
      @nand3kudasai 8 ปีที่แล้ว +5

      +Dan Overlin To know the question we would need a computer and an algorithm far more complicated. It would probably take ten million years to know.

    • @truthseeker7497
      @truthseeker7497 8 ปีที่แล้ว +10

      Another 5 minutes and we would have had the answer . . . damn the Vagons! The best laid plans of mice . . .

    • @blinky840
      @blinky840 7 ปีที่แล้ว +2

      I would give you an upvote but you are already at 42 and I would hate to ruin that.

  • @robbybobby6464
    @robbybobby6464 6 ปีที่แล้ว +5

    I'd love to go to any of Professor Brailford's lectures. I love his passion and knowledge!

  • @herp_derpingson
    @herp_derpingson 10 ปีที่แล้ว +61

    Ackerman(4,2) is equal to 42
    :)

    • @TH3MIN3R3000
      @TH3MIN3R3000 7 ปีที่แล้ว +2

      Herp Derpingson if only, if only...

  • @dalerobertson4662
    @dalerobertson4662 5 ปีที่แล้ว +2

    The only regret I have in my life is learning this late in my life, from Professor Brailsford's and rightly so, and so lucky I am. What an honor to stand on the shoulders of the masters of the computer coding & math sciences resident in my grandfather's home country. Thank you all at Computerphile. Cheers... Dale Robertson professional student. College of Marin

  • @paulfletcher4613
    @paulfletcher4613 10 ปีที่แล้ว +1

    This is amazing.
    I have been in computers and programming a long time, (1972) and this is new ground for me.
    Thanks for sharing it.

  • @philronan6929
    @philronan6929 8 ปีที่แล้ว +517

    His computer's a bit slow. I compiled his function pretty much verbatim, and it calculates ack(4,1) in 27 seconds. With optimized compilation, it only takes 5.7 seconds.
    I don't think I'll bother calculating ack(4,2) though...

    • @Computerphile
      @Computerphile  8 ปีที่แล้ว +148

      ***** suggest you watch the follow-on video :) >Sean

    • @philronan6929
      @philronan6929 8 ปีที่แล้ว +48

      ***** Ah. That explains it!

    • @idanguttsait
      @idanguttsait 8 ปีที่แล้ว +22

      +DaKnOb That is true. I had a StackOverflow on 4,1

    • @moveaxebx
      @moveaxebx 8 ปีที่แล้ว +1

      +Giora Guttsait Try with any functional PL (supports tail call optimization)

    • @drobilla
      @drobilla 8 ปีที่แล้ว +34

      +moveaxebx The Ackermann function is not tail recursive. That is essentially what the professor is explaining. Tail call optimization is, in a sense, converting a recursion into a for loop (making it iterative), and you can not do this for functions like ack.

  • @jonorion5095
    @jonorion5095 10 ปีที่แล้ว +16

    Computerphile is such a wonderful treat for me, thank you so much Brady and all of your interviewees for the time and effort putting this together (numberphile as well!). You are doing a service to all mankind, you deserve a trophy!

  • @shiraj2597
    @shiraj2597 6 ปีที่แล้ว

    Just ran into this function while going through SICP, this really helped shed some light on the topic. Thanks!

  • @hzenilc
    @hzenilc 9 ปีที่แล้ว +20

    The most important question remained unanswered! Why the Ackermann function cannot be put in for loops! A sketch of the proof would be fantastic for Prof. Brailsford to answer given his great teaching skills, maybe for a next Computerphile episode! For people it may look like you only need to write a program that keeps nesting for loops to calculate Ackermann's. Best and great series!

    • @profdaveb6384
      @profdaveb6384 9 ปีที่แล้ว +8

      Essentially, using recursion is a way of dynamically nesting "for" loops by virtue of your chosen programming language creating *dynamically* as many stack frames as are needed..There is in principle no limit except that, as the stack grows huge, you will eventually run out of memory, The problem with static for loops, explicitly written into your program, is that every compiler will put a compile-time limit on how deeply nested they may be.

    • @paulpinecone2464
      @paulpinecone2464 2 ปีที่แล้ว

      Ok, so to go half way there, make a language structure that takes an array of triples which specify the set of nested loops and a pointer to a function to call inside that is passed a state array of the current values of all the loop variables. Several challenge levels:
      1) The array is static, ie, it is just shorthand for writing out all the loops. The compiler or preprocessor can generate them.
      2) The array is dynamic but contains constants. Ie, the loop system is known at the start of it and can be allocated as a static data structure.
      3) The dynamic array can contain algebraic expressions which need to be evaluated to determine loop criteria. Ie, the structure is known at the start but the loop limited can vary.
      4) The array is returned by a function which itself can contain functions to define what the substructure of loops will be at each level. I believe this is called recursion and is no longer a language feature.

    • @kylek.3689
      @kylek.3689 2 ปีที่แล้ว +1

      Because of one of the definitions of the Ackerman function, where
      A(m+1,n+1) = A(m, A(m+1, n))
      This means the loop depth of the Ackerman function relies on M, and you'd have to give one for loop to case m=1, two loops for case m=2, three for loops for case m=3, and so on.
      Though, this is without using a heap allocated stack to imitate a function call stack.

  • @BetrayedEnemy
    @BetrayedEnemy 7 ปีที่แล้ว +6

    I just love that you can look at his face an see how much he loves this topic

  • @WaterCrane
    @WaterCrane 5 ปีที่แล้ว +3

    The Ackermann function, while useless as a piece of software, it is very useful as a theoretical case study, especially in regards to writing compilers and optimizers. The Ackermann function is, by all standards, a pure function, in that its output is deterministic and relies only on its input arguments and nothing else. What that means is that if you call it with constant actual parameters, say, x = ack(4,1), in your code somewhere, the compiler can pre-compute the result and change it to x = 65533 internally so you don't have to execute it in the compiled program. The case study comes about where you decide at what point the compiler should give up trying to pre-compute it and just leave the function call as it is, otherwise the program will never compile.

  • @nikolaglushkov93
    @nikolaglushkov93 6 ปีที่แล้ว

    This is so so interesting... as a computing and business student, I am really amazed and I can actually admire and appreciate all these programs and contributions made!!!! AMAZING!

  • @heroicalx786
    @heroicalx786 6 ปีที่แล้ว

    thanks! your way of explaining Ackermann's function is so clear and enthusiastic. great gift!

  • @slugfiller
    @slugfiller 6 ปีที่แล้ว +3

    The thing that makes the Ackermann function irreducible is that the amount of unique (m,n) pairs you need to computer is actually greater than the Ackermann number at (m,n-1). So even if you were trying to compute bottom to top, while it might be more efficient than the naive implementation (no pair calculated twice), it would still require a very large run time, and also require a great deal of memory as well.

  • @alaamroue
    @alaamroue 8 ปีที่แล้ว +58

    ack(tree(3), graham's number)

    • @ChristopherKing288
      @ChristopherKing288 7 ปีที่แล้ว +17

      7

    • @pranamd1
      @pranamd1 7 ปีที่แล้ว +11

    • @abcdefzhij
      @abcdefzhij 7 ปีที่แล้ว +13

      The salad is strong in this one.
      You are already at the magnitude of TREE(3), doing an ackermann function (which is EXTREMELY weak by comparison) won't really do anything.

    • @zokalyx
      @zokalyx 6 ปีที่แล้ว +1

      42

    • @carbrickscity
      @carbrickscity 6 ปีที่แล้ว +11

      The TREE function is way stronger than the Ackermann function. However, the follow-up video of this video was about a function even stronger than the TREE function - the Busy Beaver function.

  • @samre3006
    @samre3006 2 ปีที่แล้ว

    Such a nice voice to listen to. And extremely interesting topics.

  • @1JWL
    @1JWL 5 ปีที่แล้ว

    Lovely presentation. I really enjoyed the final part... great humour.

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

    I love computerphile, wish I found out about them when I was in middle or highschool to explore computer science sooner rather than in college.

  • @robertkelleher1850
    @robertkelleher1850 3 ปีที่แล้ว +3

    Fantastic explanation. The bit about the big crunch didn't age well, but otherwise... just magic.

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

      The reliability of the view that the expansion of the universe is speeding up is exaggerated. The Nobel Prize was awarded prior to their data being made public, and when it finally was made public recently there have been tons of papers criticizing it, both in methodology and by using more data from more modern telescopes.

  • @Omarbistami
    @Omarbistami 9 ปีที่แล้ว

    i wish i had professor like that in morocco... the passion you talk about the subject give motivation and make me love more computer science :)

    • @repairtech9717
      @repairtech9717 ปีที่แล้ว

      Most of us in the UK where he teaches wish we had a professor like this as well. He comes from a very elite university that most dont have the money to pay for.
      A quote from the wikipedia for the UON says "Nottingham has about 45,500 students and 7,000 staff, and had an income of £694 million in 2021"

  • @GrooveFederation
    @GrooveFederation 7 ปีที่แล้ว +30

    God i wish we had teachers like you guys back when i was at school, i might have actually learned something more than whether tom crosses the road with sally or jill.
    I wanna go back and absorb all this glorious input, but since creating a time machine isn't on my to do list i think i'll just watch more of these videos. Imho this channel, your numberphile channel and the PBS space time channel are the best places for input on youtube, keep it up fellas it's well appreciated.

    • @PhilipBlignaut
      @PhilipBlignaut 5 ปีที่แล้ว

      Great choice of videos subs!!

    • @mainmast8955
      @mainmast8955 5 ปีที่แล้ว

      it may be time for you/us numerical freaks to push forward.

  • @Dmirtao
    @Dmirtao 10 ปีที่แล้ว +15

    If anyone remembers Knuth's arrow notation from Numberphile's video on Graham's number, it is worth noting that Ackermann's function can be represented in arrow notation as well.
    If we define an arrow operation: 2 {↑^m} n, then that is identical to ack(m+2,n-3) + 3
    So, inversely, if we have ack(m,n) we can write its arrow notation as:
    2 {↑^m-2} [n+3] - 3
    So, as in the video, if we have ack(3,1) = 2{↑^1}4 - 3
    Which is 2^4 - 3 = 16 - 3 = 13, same as in the video.
    (Note that this method only easily works, though, for m > 2, otherwise you have no arrow operator.)
    So really ack(4,2) may be *uncomputable*, but it can be mathematically represented as 2{↑^2}5 - 3 with these hyperexponentiation operators.
    If you want to know what ack(4,2) is exactly, well, the best estimates put it approximately at:
    2*10^19728
    OR
    10^10^4.295
    So, yes, far bigger than universal timescales or particle numbers. ^_^
    en.wikipedia.org/wiki/Knuth's_up-arrow_notation
    has some more information.
    Love the videos!

  • @raditzan
    @raditzan 10 ปีที่แล้ว +49

    Ermagherd that lack of indentation is driving me crazy!!

    • @eliatarasoff5872
      @eliatarasoff5872 10 ปีที่แล้ว +8

      Agreed. That code would be sooo much easier to read if it were indented! This is like...Computers 101 stuff! ^^;

    • @miciduve
      @miciduve 3 ปีที่แล้ว +2

      @@eliatarasoff5872 ermagherd someone learned with python didnt they

  • @oossgl
    @oossgl 6 ปีที่แล้ว

    That voice is really calming and confortable, ideal for teaching!!! :)

  • @Cross31415
    @Cross31415 10 ปีที่แล้ว

    I have barely the slightest idea of what is going on in the "guts" of this, but i just really enjoy professor Brailsford talking about it. So thanks, professor!

  • @TehBleuBelly
    @TehBleuBelly 4 ปีที่แล้ว +7

    Counted the number of recursions required to calculate ack(4, 1) and the result was 2, 862, 984, 010. Mind boggling...

    • @KnakuanaRka
      @KnakuanaRka 3 ปีที่แล้ว

      Y2K38 How do you calculate that? Is that its own recursive function?

    • @abhineetsingh1291
      @abhineetsingh1291 3 ปีที่แล้ว +1

      In the recursive function create a static variable and increase every time for a recursive call

    • @KnakuanaRka
      @KnakuanaRka 3 ปีที่แล้ว

      abhineet singh Makes sense.

  • @themodernshoe2466
    @themodernshoe2466 8 ปีที่แล้ว +8

    This guy has great personality!

  •  8 ปีที่แล้ว

    This was mindblowingly amazing, thanks!

  • @DJRosted
    @DJRosted 4 ปีที่แล้ว

    I think I have some vague idea what he's talking about but but probably I'm totally wrong. I love his dramaticness of code going wrong so that keeps me listening.

  • @terjeoseberg990
    @terjeoseberg990 6 ปีที่แล้ว +4

    @7:05 he claims, "But what I would like to draw your attention to, because this is important, is that every time M and N are altered, they are reduced."
    This statement is wrong. @9:50, you can see that ackerman(m,n) is always greater than both m and n. Because the code contains, "ans = ack(m-1, ack(m,n-1))" whenever neither m nor n are 0, n in fact increases.
    It might be better to say m always either stays the same and n decreases, or whenever n increases m decreases. Eventually when m reaches 0, an answer is produced immediately.

    • @KnakuanaRka
      @KnakuanaRka 3 ปีที่แล้ว +1

      Terje Oseberg Yeah, that’s a whoopsie.

    • @pvic6959
      @pvic6959 3 ปีที่แล้ว

      i see an issue in the second line as well if n=0, the answer is ack(m-1,1). The second argument (n) is back to 1 even if it was 0 before. whcih will make it keep going.

    • @KnakuanaRka
      @KnakuanaRka 3 ปีที่แล้ว +1

      pvic However, m decreases during the call; basically, as you do recursive calls, n decreases to 0, then m decreases as n increases, then n runs down to 0 again, then m decreases again as n is reset, and so on, so m will become 0 eventually, causing the calls to stop recursing. It will take a VERY long time, since n will increase by a crazy amount each time m decreases, but it will run out eventually.

  • @WorldOfDeepThought
    @WorldOfDeepThought 9 ปีที่แล้ว +5

    Would ack(m-1,ack(m-1,ack(m,n-1))) still be superexponential or would it have an even bigger growth?

  • @creative-freedom
    @creative-freedom 7 ปีที่แล้ว

    @computerphile : Thanks for the awesome videos. I am a huge fan. Can you guys please do a video on Dynamics programming?

  • @kimsung2384
    @kimsung2384 3 ปีที่แล้ว

    I love listening to this guy .... totally inspiring

  • @stevepittman3770
    @stevepittman3770 9 ปีที่แล้ว +31

    After breaking various online 'big number calculators' I found one that works, and it turns out 2^65533 * 3 minutes rounds out to, unless I've screwed up somewhere, about 1x10^19712 times the age of the universe. Not terribly helpful.
    (((((2^65533 * 3) / 60) / 24) / 365) / 13700000000) = 1.0434008320186794 × 10^19712

    • @KnakuanaRka
      @KnakuanaRka 5 ปีที่แล้ว +2

      If you want help with big powers like that, try making logarithms of everything; multiplying and dividing stuff like that turns into adding and subtracting more manageable numbers.

  • @yramagicman675
    @yramagicman675 10 ปีที่แล้ว +5

    I downloaded the program files and ran ack(6,6) on my quad core 3.2 ghz machine running Arch Linux. It used 100% of one of my cores, took 1 minute 45 seconds, and ended in a segmentation fault. ack(4,4) also segfaults. ack(3,3) returns in under a second.

  • @alexxcold
    @alexxcold 4 ปีที่แล้ว +1

    These videos are such an absolute joy for somebody like me who is trying to get into computer science.
    From the bottom of my heart, thank you.

  • @annieworroll4373
    @annieworroll4373 3 ปีที่แล้ว +1

    Using direct computation for m

    • @annieworroll4373
      @annieworroll4373 3 ปีที่แล้ว

      I tried caching m=3, but it turned out that was more expensive than the multiplication direct computation uses.
      Not sure what my next step in optimization will be. There are a few avenues I can explore for it.

  • @weeeeee831
    @weeeeee831 9 ปีที่แล้ว +25

    I love this guy

  • @Boris99999
    @Boris99999 4 ปีที่แล้ว +6

    I remember when in school we were making the program that solved the “Hanoi tower” problem and then we made a fractal tree that was moving in the wind - it was so beautiful!
    Since that day I fell in love with recursions and fractals!

  • @seandavidniemann4563
    @seandavidniemann4563 8 ปีที่แล้ว +1

    Fabulous video. Pretty interesting stuff

  • @PauloAbreu
    @PauloAbreu 6 ปีที่แล้ว

    Mind boggling! Great video!

  • @HackingWithTheLeviathan
    @HackingWithTheLeviathan 8 ปีที่แล้ว +3

    You use openSUSE! Me too! ^_^
    And I had the Ackermann function in a lecture at ETH Zürich!
    Keep on doing these videos! :D

  • @Niosus
    @Niosus 10 ปีที่แล้ว +25

    Would caching make this function more computable? By remembering old results you do not need to recalculate them. Since it only calls the function with reduced arguments, it doesn't seem that hard to build your way up?
    I am probably missing something :P

    • @ernhamDjinn
      @ernhamDjinn 6 ปีที่แล้ว

      ack(4,2) will access ack(3, 65k), value that was never computed before, which itself will access ack(2, insanely_large_value), and so on.

    • @armoredmind-gr2298
      @armoredmind-gr2298 5 ปีที่แล้ว

      Nope . Thats memorization for recursion . That's not the problem in this case

    • @mainmast8955
      @mainmast8955 5 ปีที่แล้ว

      ur onto something

  • @ICoulntThinkofAUserNam547
    @ICoulntThinkofAUserNam547 6 ปีที่แล้ว

    This guy is amazing, so fun to watch

  • @telaferrum
    @telaferrum 6 ปีที่แล้ว

    There's some subtlety the video had to skip about what primitive recursive functions are that I had to look up. Because without that further clarification, of course I can rewrite any recursive function without recursive calls. Using loops I can keep track of my stack manually as a resizeable list and as my loop condition iterate so long as the stack is not empty. In C I could even do that with for loops where my loop condition can be anything, not just i < something.
    Partially recursive functions specifically restrict one to loops with a specific known upper bound to the number of times the loop iterates, but importantly also doesn't allow all manner of other things that would allow one to simulate recursion like while loops or goto. The definition lists all the things you're allowed to do instead of what you're not, because otherwise I could come up with an infinite number of other language features that let me simulate recursion.

  • @Ozzah
    @Ozzah 9 ปีที่แล้ว +3

    That's not at all what superexponential means in the context of computational complexity. In the context of computational complexity theory, anything superexponential is anything with a time complexity (or space complexity) greater than O(c^n), where c is a constant and n is the problem size.
    For example, the factorial function is superexponential. There are a lot of problems that have factorial complexity, for example in combinatorial optimisation.

  • @greg55666
    @greg55666 9 ปีที่แล้ว +29

    I have a different idea--what if we remembered the results of every call, so we could look them up in a table rather than recalculating? Would that simplify the problem? Somewhat at least. We are calling ack with the same values over and over. But is it enough?
    Interesting. By remembering the previous values, my program is able to calculate ack(4,1) instantaneously as 65,533. So remembering the previous values does simplify the problem, but I still get a stack error before I get to ack(4,2).
    Here's a question. Since there is an obvious pattern to the answers, what if we just rewrite ack to return the value? Is that possible? Or is recursion still necessary in order to calculate the n^n . . . ^n . . . ^n?

    • @jayeisenhardt1337
      @jayeisenhardt1337 5 ปีที่แล้ว +2

      Yeah I was thinking of turning this into a math problem to look for shortcuts for 10,10. Maybe if they understood the math it can be written easier. Then you only have a fraction of the work to do.

    • @douplofigure
      @douplofigure 4 ปีที่แล้ว +1

      As this problem is computable via µ-recursion, it is also computable by while-loops, this may speed your calculation up. For the problem of n^n^...^n^n (a power-tower) this can actualy be done with for-loops or primitive recursion, so the computational time is not that bad:
      In Python:
      def pt(x, y):
      n = x
      for i in range(y):
      n = x ** n
      return n
      The main problem here is that the numbers also become quite huge and may not fit into memory.

    • @ianzen
      @ianzen 4 ปีที่แล้ว +4

      Nothing will help speed up the computation, the simple fact of reading and adding two intermediate values take too long.

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

    Fantastic video. Professor Brailsford is awesome. ❤

  • @LazZanZaz
    @LazZanZaz 2 ปีที่แล้ว

    The program in the description (link) is missing a semicolon in the printf line... I learned how to detect those the hard way
    Great video as always prof!

  • @janmeznik8070
    @janmeznik8070 8 ปีที่แล้ว +18

    Such a simple function, yet amazing how long it takes to compute.
    But, given infinite memory, I wonder much the runtime could be brought down using dynamic programming (memoization).

  • @eliotcougar
    @eliotcougar 10 ปีที่แล้ว +17

    Can a quantum computer be programmed to calculate ackerman function and how many qubits will be needed for that?..

    • @unvergebeneid
      @unvergebeneid 10 ปีที่แล้ว

      I don't actually know but I'd be really surprised if there was an asymptotically faster quantum algorithm to compute the Ackermann function.

    • @yousorooo
      @yousorooo 10 ปีที่แล้ว +1

      That's not what a quantum computer does. It can only calculates combinations.

    • @unvergebeneid
      @unvergebeneid 10 ปีที่แล้ว

      Joseph Harrietha Since the Ackermann function is a classic in theoretical computer science, QC being only theoretical at the time being shouldn't matter all that much for the question at hand ;)

    • @Leopard2
      @Leopard2 10 ปีที่แล้ว

      From my understanding of QM computing it will give you a possible answer and you'd still have to check its validity. So... no

    • @Leopard2
      @Leopard2 10 ปีที่แล้ว

      It's all I gathered from my degree :/
      QM computers are much better suited to other types of problems.
      Maybe find out if N=NP and all that ha!

  • @ElShogoso
    @ElShogoso 7 ปีที่แล้ว +1

    I think this function is easier to understand when defined in a functional language, such as Haskell:
    ack(0, n) = n + 1
    ack(m, 0) = ack(m - 1, 1)
    ack(m, n) = ack(m-1, ack(m, n-1))
    After defining it like this, try to run, for example, in ghci:
    [ack(m,n) | m

  • @TheShouldoos
    @TheShouldoos 9 ปีที่แล้ว

    This channel is so awesome.

  • @The2bdkid
    @The2bdkid 7 ปีที่แล้ว +3

    I compiled the same code and I'm getting different numbers.. then it crashes at ack(4,1).

  • @aMulliganStew
    @aMulliganStew 8 ปีที่แล้ว +9

    You've discussed algorithms that are necessarily recursive. Given that multi-cores and threads are now mainstream, I wonder if there are any algorithms that are necessarily parallel.

    • @jirihavel9766
      @jirihavel9766 8 ปีที่แล้ว +3

      +aMulliganStew No, you can always serialize it by interleaving instructions from different threads.

    • @jonathanpark4619
      @jonathanpark4619 8 ปีที่แล้ว

      +Jiří Havel That's still parallelization.

    • @jirihavel9766
      @jirihavel9766 8 ปีที่แล้ว +2

      Jonathan Park
      I meant that you can always emulate a parallel machine on a serial one. This means that there are no problems that are solvable by parallel but not by serial one.

    • @jonathanpark4619
      @jonathanpark4619 8 ปีที่แล้ว

      Unless you're executing the threads in a serial manner, that's still parallelization.

    • @jirihavel9766
      @jirihavel9766 8 ปีที่แล้ว +2

      Jonathan Park
      You can call it this way. I answered to "I wonder if there are any algorithms that are necessarily parallel." And since you can convert any parallel algorithm to a serial one (even if that means emulating some parallel machine), then parallel algorithms can't solve any problem that a serial algorithm can't.

  • @fidalgoverde
    @fidalgoverde 5 ปีที่แล้ว

    Beautiful Masterpiece

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

    Recursively Enumerable includes undecidable problems. The halting problem is undecidable and recursively enumerable (just run the turing machine and accept if it halts). What you meant to put at the end is unrecognizable problems. An example of an unrecognizable problem is all turing machine input pairs that do not halt.

  • @blingkid00
    @blingkid00 10 ปีที่แล้ว +5

    i believe that for loops and recursion are only needed when working with indexes and such. but not when doing math... there is always an equation. that will do it next to instantly.

    • @Ozzah
      @Ozzah 9 ปีที่แล้ว

      steven johnston No. Elementary functions can be defined recursively and there is no closed for solution to them. Some functions are defined as infinite sums of basis functions. Most differential equations have no closed for solutions and must be solved numerically. In all these cases, loops or recursions are absolutely necessary. And it's definitely not true that it can be computed instantly. I currently have 3 computers working for almost a month on one problem ;)

    • @jervey123
      @jervey123 9 ปีที่แล้ว

      wuuut? i disagree math is all about recursion... the simplest of elements in math revolve around recursion like say counting but before we can count we have to define natural numbers; how do you define a number? well a number is either zero or the increment of a number, so you can practically create a function called "number 5" which is just inc^5(zero), see? recursion

  • @zackinator1439
    @zackinator1439 5 ปีที่แล้ว +5

    I think the answer '42' from Hitchhiker's Guide to The Galaxy may be a result of a call of ackerman. Now the question is what were m and n?

    • @furbyfubar
      @furbyfubar 4 ปีที่แล้ว +1

      That's an easy but not a very interesting call since: ack(0,41) = 42

  • @evanamavrin5308
    @evanamavrin5308 3 ปีที่แล้ว +2

    OpenSUSE linux in the background! Love that distro.

  • @darkangel2347
    @darkangel2347 2 ปีที่แล้ว

    For small specific values of m and variable n, we have ack(1, n) = n+2, ack(2,n) = 2n+3 and ack(3,n) = 2^(n+3)-3. We can see from this that ack(4,n) is extremely hard to compute.

  • @RacTac
    @RacTac 2 ปีที่แล้ว +6

    I computed the value of the Ackermann function of 4 and 1 and my M1 Macbook took roughly 6 seconds which just shows how far we've come in 7 years of processor performance upgrades.

  • @rickveens92
    @rickveens92 10 ปีที่แล้ว +11

    Dear mr Professor Brailsford:
    1 please use proper indentation (tabs?)
    2 is that pre-ansi C (K&R C style?)
    I enjoyed watching your video however

  • @williamwinner4234
    @williamwinner4234 3 ปีที่แล้ว

    I had to use recursion on my sediment loading model. For my model it took a DEM and other layers and need to work up a river to measure sediment loss and sediment delivery. So I worked from the origin cell and looked for neighbor cells that fell upriver. So I had to look recursively at each cell until we were at the highest cells and then work downriver. I guess you could do it with a with loop and several for loops but it would take forever.

  • @ArthurBi
    @ArthurBi 9 ปีที่แล้ว +1

    What if we could just use smaller fuction results to skip some calculations? For example. if we use ack(200,200) and if ackerman (3,4) appears at some point, we just use already sorted answer?

  • @Wouter10123
    @Wouter10123 10 ปีที่แล้ว +4

    I noticed that all those numbers are very close to a power of two, in fact, starting at ackerman(2,5) they're all 2^p - 3 for some p. Is there a pattern to this?

    • @vekyll
      @vekyll 4 ปีที่แล้ว

      Yes. You should at least read Wikipedia. :-) If you want to know more, including the motivation for the original Ackermann function, just message me.

    • @abhayshankar8762
      @abhayshankar8762 2 ปีที่แล้ว

      yeah. try doing it by hand - you wont get the exact numbers, obviously, but you will get those power tower representations of them.mind you, once you see it, you cant unsee it.

  • @ZoggFromBetelgeuse
    @ZoggFromBetelgeuse 10 ปีที่แล้ว +455

    Ooops, I think I just crashed a planetary superbrain in the Perseus arm. by asking it to compute Ack(G, G), where G is Grahams Number.

    • @Jcarr250
      @Jcarr250 9 ปีที่แล้ว +13

      See the thing is, that's barely bigger than G64 already. It's actually smaller than G65
      Ack(G64, G64) looks to be 2 ↑^(G64) (G64 + 3) whereas
      G65 = 3 ↑^(G64) G64
      ↑^(G64) refers to G64 Knuth Arrows

    • @garethdean6382
      @garethdean6382 9 ปีที่แล้ว +6

      Umbrall
      Let's feed it an xkcd number.

    • @coopergates9680
      @coopergates9680 9 ปีที่แล้ว +1

      Smonjirez G65 has the G64 arrows between two 3s. His number, though, is a lot less than G66.

    • @Jcarr250
      @Jcarr250 9 ปีที่แล้ว

      Cooper Gates That's what I was saying. It's not even just smaller than G66 it's smaller than G65

    • @coopergates9680
      @coopergates9680 9 ปีที่แล้ว

      Umbrall No, he put G64 arrows between G64 twice instead of two 3s, so it is a lot larger than G65.

  • @christopherg2347
    @christopherg2347 4 ปีที่แล้ว

    I wonder how much we could save by storing the results of previous ack calls for any combination of values and looking if we got a solution to any specific m/n case before we try to figure it out the hard way? For these loops int would only need a 5x5 collection.
    A lot of that super-recursion, should just be doing the same ack call over and over again. But would it actually defeat the super-recursion, or only "kick the can down the road"?

  • @TheThunderSpirit
    @TheThunderSpirit 7 ปีที่แล้ว +1

    Hi... plz tell me the time complexity of this func.
    how can we even calculate that.
    what about space complexity.

  • @tiborsaas
    @tiborsaas 9 ปีที่แล้ว +21

    I worked out the fast Ackermann function :)
    function fAck(m,n){
    var ack = [4,5,6,2,3,4,5,6,7,3,5,7,9,11,13,5,13,29,61,125,253,13,65533];
    console.log( ack[m] )
    if( m

    • @coopergates9680
      @coopergates9680 9 ปีที่แล้ว

      kowdermeister So that will throw the error every time it's called he he (original call)

  • @vakabus
    @vakabus 10 ปีที่แล้ว +6

    I think there is a rule. Results after ack(3,0) are always (as far as I know) powers of 2 minus 3.
    Is there a PROVED rule?

    • @matthewsaulsbury3011
      @matthewsaulsbury3011 4 ปีที่แล้ว

      I don't know. That's cool that they are powers of 2 minus 3! 👍 I like powers of 2. The Ack(4,1) value of 65,533 is 3 less than 2^16. 😀 These are amazing and intriguing things on this video!

  • @SheepsRocks
    @SheepsRocks 9 ปีที่แล้ว

    Great talk, thank you.

  • @foolwise4703
    @foolwise4703 3 ปีที่แล้ว

    The smirk while saying "You can prove there is an answer and how to get it, but no one will be around long enough to hear it" :D

  • @KyleSiopiolosz
    @KyleSiopiolosz 9 ปีที่แล้ว +5

    There seems to be an interesting pattern if you run the function where m = 3 and n >= 0 In that:
    ack(3,n) = 2^(n+3) - 3
    Example:
    ack(3,0) = 5 | 2^3 = 8
    ack(3,1) = 13 | 2^4 = 16
    ack(3,2) = 29 | 2^5 = 32
    ... and so on

  • @Ezechielpitau
    @Ezechielpitau 8 ปีที่แล้ว +6

    one question about this: when I wrote this in python I got an error that more than 1000 recursive calls is not possible. While this might be different in other programming languages I'm a bit baffled that this can run for four weeks on their computer and not lead to some memory problem... Cause isn't the thing about recursiveness that we need absurd amounts of memory?

    • @MrPoutsesMple
      @MrPoutsesMple 8 ปีที่แล้ว +2

      +Ezechielpitau I think you can override this python recursive call barrier somehow.

    • @carnaedy
      @carnaedy 8 ปีที่แล้ว

      +Ezechielpitau
      > " isn't the thing about recursiveness that we need absurd amounts of memory?"
      Tail-call optimization completely eliminates the memory problem, if the programmer makes an effort to lay out the function in a certain way.

    • @Ezechielpitau
      @Ezechielpitau 8 ปีที่แล้ว

      +Paulina Jonušaitė ah ok thx, I'll have a look into how that works :)

    • @techmage89
      @techmage89 8 ปีที่แล้ว +1

      +Paulina Jonušaitė I believe that will only work for primitive recursive functions. In this case, one branch has a recursive call that cannot be unrolled.

  • @swizzlatheone4081
    @swizzlatheone4081 3 ปีที่แล้ว

    very nice lecture...thank you 😁

  • @sandessharma8195
    @sandessharma8195 2 ปีที่แล้ว

    I tried to visualize that recursion in my head, and my brain's stack just overflowed. 🤣