Тёмный

The Most Difficult Program to Compute? - Computerphile 

Computerphile
Подписаться 2,4 млн
Просмотров 1,4 млн
50% 1

Опубликовано:

 

26 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 2,1 тыс.   
@steveskidude
@steveskidude 8 лет назад
He's could be the David Attenborough of computer science. "...And here, we observe the C++, in its natural habitat..."
@rykehuss3435
@rykehuss3435 7 лет назад
Nailed it
@xplinux22
@xplinux22 7 лет назад
"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 лет назад
That's who he reminds me of!
@douwehuysmans5959
@douwehuysmans5959 5 лет назад
"but alas, the buffer overflowed and as you see can see the instruction pointer makes a miraculous jump towards the kernel"
@JamesSpeiser
@JamesSpeiser 5 лет назад
hahaha
@christianherrera4729
@christianherrera4729 9 лет назад
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 лет назад
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 лет назад
lol, same
@sidharthcs2110
@sidharthcs2110 6 лет назад
Christian Herrera So I'm not alone
@Confucius_76
@Confucius_76 5 лет назад
yes! loved it though
@Ligma_Male-ub1ud
@Ligma_Male-ub1ud 5 лет назад
Low key just copied and pasted this into an ide I’m in CS1 , but changing my degree plan after this semester
@keistzenon9593
@keistzenon9593 9 лет назад
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 9 лет назад
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 лет назад
So it acts like Graham's number?
@carbrickscity
@carbrickscity 2 года назад
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 Год назад
@@DenisovichDev he was parsing the deferred chains. You didn't so that why yours was instant.
@harrynewton4786
@harrynewton4786 9 лет назад
i don't alwys use recursion...but when i use recursion i don't always use recursion.
@RKBock
@RKBock 6 лет назад
to understand recursion, you must first understand recursion
@shadowagent3
@shadowagent3 5 лет назад
@@RKBock to write a recursive function you must first write a recursive function to write a recursive function
@nandkishorenangre3541
@nandkishorenangre3541 5 лет назад
@@shadowagent3 To write a recursive comment some one else must add up the next recursive comment
@JamesSpeiser
@JamesSpeiser 5 лет назад
holds beer
@mohamedb737
@mohamedb737 4 года назад
the only way to understand recursive function is to do it recursively
@christophernugent8492
@christophernugent8492 5 лет назад
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.
@d_9696
@d_9696 9 лет назад
Ack(-1, -1); ... The thread running this code has never been seen again.
@lukitree
@lukitree 9 лет назад
Herp Derpington haha, yeah gotta add error checking in there ... #include ... assert (m >= 0 && n >= 0); ...
@321671999
@321671999 9 лет назад
lukitree don't use tho, use
@OverSoft
@OverSoft 9 лет назад
Herp Derpington Define the int's as uint and it'll protect you from this nonsense. :P
@MrMiljaker
@MrMiljaker 8 лет назад
+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 лет назад
Nah, it just produces StackOverflowError.
@nathansmith3608
@nathansmith3608 8 лет назад
I checked the size of 3 * 2 ** 65333 in python the number itself is 280 lines in windows powershell
@EmptyKingdoms
@EmptyKingdoms 4 года назад
And it probably just filled the final lines with a bunch of zeroes because it cannot compute that large an integer.
@dramforever
@dramforever 4 года назад
@@EmptyKingdoms Python can
@EmptyKingdoms
@EmptyKingdoms 4 года назад
@@dramforever using what tools?
@dramforever
@dramforever 4 года назад
​@@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 года назад
@@dramforever thank you.
@polygonofficial1143
@polygonofficial1143 10 лет назад
this dude's voice is absolutely soothing.
@DrZale
@DrZale 9 лет назад
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
@elias551
@elias551 Год назад
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
@jonorion5095
@jonorion5095 10 лет назад
Man I sure love Professor Brailsford, I hang on every word he says. Such a great lecturing voice! Such a wise old wizard.
@billruddock
@billruddock 5 лет назад
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 4 года назад
Yeah, that’s one way to improve it.
@Rudxain
@Rudxain 2 года назад
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 2 года назад
try 4,4
@BelegaerTheGreat
@BelegaerTheGreat Год назад
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 Год назад
any ack out there is finite, regardless of how big it is. Infinity on the other hand literally means not finite.
@JordanMetroidManiac
@JordanMetroidManiac 8 месяцев назад
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 6 месяцев назад
“It’s longer than you think, dad!”
@jonorion5095
@jonorion5095 10 лет назад
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!
@NemosChannel
@NemosChannel 9 лет назад
"and within that VILE second argument.." This is too funny! I like this guy.
@themennissvids
@themennissvids 10 лет назад
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 лет назад
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 лет назад
Thats gonna be fun :D It will stop calculating even before you really startet the ackerman part...
@themennissvids
@themennissvids 10 лет назад
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.
@bitterlemonboy
@bitterlemonboy 2 года назад
What about Ack(TREE(g64),TREE(g64))
@SteveGouldinSpain
@SteveGouldinSpain 10 лет назад
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 лет назад
Brilliant...!
@djdedan
@djdedan 10 лет назад
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 10 лет назад
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 10 лет назад
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 10 лет назад
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.
@sth128
@sth128 10 лет назад
It'd be funny if the program returned -1/12.
@CircusBamse
@CircusBamse 10 лет назад
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 лет назад
Minox sta Some would argue that summing natural integers to infinity would be integer as well... : ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-w-I6XTVZXww.html
@kevinmichelet91
@kevinmichelet91 10 лет назад
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 лет назад
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 лет назад
Minox sta But adding all the natural numbers must be an integer, right?
@dplameras
@dplameras 3 года назад
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.
@suave319
@suave319 9 лет назад
I want Professor Brailsford as my lecturer. He's awesome :D
@hamza3838
@hamza3838 6 лет назад
Suave Atore wait is that his name? THATS SUCH A COOL NAME
@NikolajLepka
@NikolajLepka 10 лет назад
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 лет назад
This i called "Dynamic programming" :)
@NikolajLepka
@NikolajLepka 9 лет назад
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.
@robbybobby6464
@robbybobby6464 7 лет назад
I'd love to go to any of Professor Brailford's lectures. I love his passion and knowledge!
@bangpaf2328
@bangpaf2328 8 лет назад
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 8 лет назад
Python, please.
@SonnyGhosh
@SonnyGhosh 8 лет назад
use like Java, c#, c++, etc
@kraemer-raimund
@kraemer-raimund 8 лет назад
You can change the recursion limit in Python.
@bangpaf2328
@bangpaf2328 8 лет назад
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?
@BetrayedEnemy
@BetrayedEnemy 7 лет назад
I just love that you can look at his face an see how much he loves this topic
@philronan6929
@philronan6929 9 лет назад
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 9 лет назад
***** suggest you watch the follow-on video :) >Sean
@philronan6929
@philronan6929 9 лет назад
***** Ah. That explains it!
@idanguttsait
@idanguttsait 9 лет назад
+DaKnOb That is true. I had a StackOverflow on 4,1
@moveaxebx
@moveaxebx 8 лет назад
+Giora Guttsait Try with any functional PL (supports tail call optimization)
@drobilla
@drobilla 8 лет назад
+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.
@loupax
@loupax 10 лет назад
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 7 лет назад
How much is it?
@lagduck2209
@lagduck2209 6 лет назад
HebaruSan probably at least some, if any
@SwissSareth
@SwissSareth 4 года назад
Funnily true ...
@sayven
@sayven 2 года назад
can confirm lol
@TheALPHA1550
@TheALPHA1550 8 лет назад
Ah, nothing like theoretical computer science.
@GrooveFederation
@GrooveFederation 8 лет назад
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.
@dalerobertson4662
@dalerobertson4662 5 лет назад
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 лет назад
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.
@hzenilc
@hzenilc 10 лет назад
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 10 лет назад
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 года назад
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.
@nand3kudasai
@nand3kudasai 9 лет назад
the result will probably be 42
@fuppetti
@fuppetti 9 лет назад
Jerónimo Barraco Mármol ack(ack(life, universe),ack(everything, douglasadams))
@truthseeker7497
@truthseeker7497 9 лет назад
+Jerónimo Barraco Mármol A distinct possibility. What was the question?
@nand3kudasai
@nand3kudasai 9 лет назад
+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 9 лет назад
Another 5 minutes and we would have had the answer . . . damn the Vagons! The best laid plans of mice . . .
@blinky840
@blinky840 7 лет назад
I would give you an upvote but you are already at 42 and I would hate to ruin that.
@kenneth_romero
@kenneth_romero Год назад
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.
@Ganerrr
@Ganerrr Год назад
I'm confused, you can simulate a turing machine using for loops and thus can implement ack within that?
@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!
@herp_derpingson
@herp_derpingson 10 лет назад
Ackerman(4,2) is equal to 42 :)
@TH3MIN3R3000
@TH3MIN3R3000 7 лет назад
Herp Derpingson if only, if only...
@robertkelleher1850
@robertkelleher1850 3 года назад
Fantastic explanation. The bit about the big crunch didn't age well, but otherwise... just magic.
@amihartz
@amihartz Год назад
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.
@slugfiller
@slugfiller 6 лет назад
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.
@MisterFanwank
@MisterFanwank 10 лет назад
Is there any significance behind 65533 almost being 2^16? Or is that just a coincidence?
@annieworroll4373
@annieworroll4373 3 года назад
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.
@alaamroue
@alaamroue 8 лет назад
ack(tree(3), graham's number)
@ChristopherKing288
@ChristopherKing288 8 лет назад
7
@pranamd1
@pranamd1 8 лет назад
@abcdefzhij
@abcdefzhij 8 лет назад
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 лет назад
42
@carbrickscity
@carbrickscity 6 лет назад
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.
@Dmirtao
@Dmirtao 10 лет назад
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!
@themodernshoe2466
@themodernshoe2466 8 лет назад
This guy has great personality!
@Omarbistami
@Omarbistami 10 лет назад
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 :)
@golangismyjam
@golangismyjam 2 года назад
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"
@shiraj2597
@shiraj2597 6 лет назад
Just ran into this function while going through SICP, this really helped shed some light on the topic. Thanks!
@weeeeee831
@weeeeee831 9 лет назад
I love this guy
@stevepittman3770
@stevepittman3770 9 лет назад
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 6 лет назад
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.
@TehBleuBelly
@TehBleuBelly 4 года назад
Counted the number of recursions required to calculate ack(4, 1) and the result was 2, 862, 984, 010. Mind boggling...
@KnakuanaRka
@KnakuanaRka 4 года назад
Y2K38 How do you calculate that? Is that its own recursive function?
@abhineetsingh1291
@abhineetsingh1291 4 года назад
In the recursive function create a static variable and increase every time for a recursive call
@KnakuanaRka
@KnakuanaRka 4 года назад
abhineet singh Makes sense.
@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!
@samre3006
@samre3006 3 года назад
Such a nice voice to listen to. And extremely interesting topics.
@Niosus
@Niosus 10 лет назад
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 6 лет назад
Nope . Thats memorization for recursion . That's not the problem in this case
@mainmast8955
@mainmast8955 5 лет назад
ur onto something
@yramagicman675
@yramagicman675 10 лет назад
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.
@raditzan
@raditzan 10 лет назад
Ermagherd that lack of indentation is driving me crazy!!
@eliatarasoff5872
@eliatarasoff5872 10 лет назад
Agreed. That code would be sooo much easier to read if it were indented! This is like...Computers 101 stuff! ^^;
@miciduve
@miciduve 3 года назад
@@eliatarasoff5872 ermagherd someone learned with python didnt they
@area51xi
@area51xi 2 года назад
On computerphile, you're never too far from the deep end.
@alexxcold
@alexxcold 4 года назад
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.
@Boris99999
@Boris99999 4 года назад
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!
@terjeoseberg990
@terjeoseberg990 6 лет назад
@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 4 года назад
Terje Oseberg Yeah, that’s a whoopsie.
@pvic6959
@pvic6959 4 года назад
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 4 года назад
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.
@ZoggFromBetelgeuse
@ZoggFromBetelgeuse 10 лет назад
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 лет назад
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 лет назад
Umbrall Let's feed it an xkcd number.
@coopergates9680
@coopergates9680 9 лет назад
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.
@h_3795
@h_3795 10 месяцев назад
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.
@ElShogoso
@ElShogoso 8 лет назад
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
@rickveens92
@rickveens92 10 лет назад
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
@greg55666
@greg55666 9 лет назад
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 лет назад
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 5 лет назад
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 5 лет назад
Nothing will help speed up the computation, the simple fact of reading and adding two intermediate values take too long.
@Ozzah
@Ozzah 10 лет назад
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.
@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
@heroicalx786
@heroicalx786 7 лет назад
thanks! your way of explaining Ackermann's function is so clear and enthusiastic. great gift!
@WorldOfDeepThought
@WorldOfDeepThought 10 лет назад
Would ack(m-1,ack(m-1,ack(m,n-1))) still be superexponential or would it have an even bigger growth?
@aMulliganStew
@aMulliganStew 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 лет назад
+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 лет назад
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 лет назад
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.
@blingkid00
@blingkid00 10 лет назад
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 10 лет назад
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 10 лет назад
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
@Rising_Pho3nix_23
@Rising_Pho3nix_23 7 лет назад
example of enumerable recursion with occasional output: "Display all files in drive C" example of undescidable recursion: "write a text file that contains the hash value of the file when the file is hashed."
@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.
@rajinrashid2455
@rajinrashid2455 3 года назад
i was searching for the secret behind the ackermann power in aot and got this. Nice
@KyleSiopiolosz
@KyleSiopiolosz 10 лет назад
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
@zackinator1439
@zackinator1439 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 года назад
That's an easy but not a very interesting call since: ack(0,41) = 42
@anish_cr
@anish_cr 5 лет назад
Techically speaking all recursion is carried out by implementing a recursion stack hence you could use a for loop to implement any kind of recursion. Hence Ackermann's function too could be return using only for looops.
@pratikmaitra8543
@pratikmaitra8543 5 лет назад
If my understanding is correct he is not talking about a for loop in the general sense but rather the inability to get a random ackerman number given a set of previously solved ackerman numbers in a reasonable timeframe as we do not know how long to run the for loop. In other words we cannot get a n upper bound for ackerman numbers. For eg we can get fibonacci number to get the 1000th fibonacci we can use a for loop that runs for 1000 iterations but otoh for ackerman numbers we are unsure what iterations ack(1000,2) will take.
@schaezar
@schaezar Год назад
It's interesting to see how far computers and processing power has come since then. I tried to run the same code (with a few tweaks to the stack size to avoid overflows). and what took 3 minutes back then on a fairly specced machine took about 2,6 seconds on my midrange i-5 12400. Fascinating though that NOBODY will ever see that comment.
@robmarshall9026
@robmarshall9026 Год назад
I'll try this on my M1 Macbook and let you know
@schaezar
@schaezar Год назад
@@robmarshall9026 so how did it go ?
@1nt3rl0ck
@1nt3rl0ck 6 лет назад
At school while learning VB6 long time ago, I made a horse race game project. It had to have random values on the power of the horse but I felt that this PC random function was not enough random to me. So in the race the speed was randomly changing speed by a random factor for a random time. This is how you could have a 200MHz computer completely freeze. At that moment I understood that my code was not optimized.
@eliotcougar
@eliotcougar 10 лет назад
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 лет назад
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!
@janmeznik8070
@janmeznik8070 8 лет назад
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).
@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.
@balthazarbeutelwolf9097
@balthazarbeutelwolf9097 7 лет назад
As some people are wondering what ack(4,2) is like: the number has 19729 decimal digits, begins with 20035.. and ends in ...6733. One can compute it by exploiting the knowledge that the special case ack(3,x) is always 2^(x+3)-3. So, a programming language with unbounded integers like Haskell can do that for you. However, ack(4,3) is hopeless anyway, because to even represent the resulting number as a binary number on a computer you need a computer with a very very large piece of computer memory - exceeding the size of the known universe.
@xanokothe
@xanokothe 10 лет назад
It reminds me "arrow arrow arrow" from Grahams Number LOL
@photosinensis
@photosinensis 10 лет назад
It should. You need Knuth's arrow notation to describe A(4,2).
@Wouter10123
@Wouter10123 10 лет назад
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 5 лет назад
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.
@tiborsaas
@tiborsaas 9 лет назад
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)
@nocog
@nocog 10 лет назад
Answers for ack(3,n) can be computed almost instantly. ack(3,n) is simply 2^(n+3) -3 So, ack(4,2), which is ack(3, 65533), is simply: 2^65536 -3
@profdaveb6384
@profdaveb6384 10 лет назад
Yes, I know! I intended to reveal, at the end of the video,that values for Ackermann can be inferred, thereby sidestepping the need for an eternity of recursive calculation. However, I ran out of time and, as the video is already almost 15 mins long, what little I did say probably ended up on Sean's cutting-room floor ... :-)
@gl1500ctv
@gl1500ctv 9 лет назад
Mark, thank you! I was thinking "I like this guy, but his cosmology is a couple of decades out of date." Glad I'm not the only one to go "Big Crunch?, srsly?"
@Ezechielpitau
@Ezechielpitau 8 лет назад
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 лет назад
+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 лет назад
+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.
@PvblivsAelivs
@PvblivsAelivs 10 лет назад
Now, here is the nasty thing. You can program Ackermann's function iteratively. It requires setting up a stack and it is not a pretty picture. But you can do it. Those of you aware that no machine language actually has any recursion in it could probably guess this fact.
@aim2986
@aim2986 3 года назад
That's not the point. The point is you can't convert a general recursive function into a FOR loop. Of course, you can convert it into a while loop. You just can not know maximum possible iterations. That's why you can't do a for loop. Also, machine languages has recursion in it. Recursion basically means calling the currently executing subroutine. What prevents you from doing it? For example, in x86 assembly, you can just use the call instruction.
@PvblivsAelivs
@PvblivsAelivs 3 года назад
@@aim2986 Yes you can use the call instruction. But it is not innately recursive, as you will find out when you mess up your stack. It is an iterative instruction. It saves some data to memory, updates a general purpose register and updates the instruction pointer. I stand by my statement. No machine language _actually_ has recursion in it. It has tools you can use to implement recursive algorithms.
@aim2986
@aim2986 3 года назад
@@PvblivsAelivs by that logic no machine language actually has functions in it, too. We can think all non-recursive functions like loops which iterate only once. Like a do..while(false) loop.
@PvblivsAelivs
@PvblivsAelivs 3 года назад
@@aim2986 That's true. No machine language actually has functions in it. They are a useful abstraction. But it is not what the processor does.
@aim2986
@aim2986 3 года назад
@@PvblivsAelivs ok. I got you. Machine languages doesn't have functions. But I think assembly languages does. I know that's not the point here, but I just wanted to make it clear. Because you know, we can define labels which we can jump later.
@philipsalter934
@philipsalter934 10 лет назад
g64 is grahams number (MUUUCH bigger than a googleplex). see numberphiles video: Graham's Number - Numberphile
@AaronHollander314
@AaronHollander314 5 лет назад
TREE(3)
@pounet2
@pounet2 3 года назад
I think you argument about the fact that the Ackermann function should stop is incorrect. Indeed, Ack(m,n-1) is passed in the argument as n in the last test case and we could have n
@napillnik
@napillnik 10 лет назад
Because all recursion is just an iterative loop through a stack, a deeper recursion will require more stack space. When maximum recursion depth is reached, you get a Stack Overflow error / exception in modern languages. But even this algorithm can be expressed with a loop and a stack for variables. In fact I used this technique to overcome the maximum recursion depth of a language. And it was working faster than with recursion. As for the most difficult problem to compute, I was expecting to actually see Fibonacci done recursively. Because the worst way to do a Fibonacci sequence is by using recursion. To calculate the 40th Fibonacci by paper manually will be much faster than using a recursive algorithm on a 4GHz CPU. And with each additional Fibonacci number, the complexity of the problem increases like a factorial (worse than exponential).
@chaosopher23
@chaosopher23 8 лет назад
It's time to build a computer I don't mind crashing.
@The2bdkid
@The2bdkid 8 лет назад
I compiled the same code and I'm getting different numbers.. then it crashes at ack(4,1).
@svenausten9645
@svenausten9645 8 лет назад
I am SO PROUD that a native english speaker just pronounced the name of my home town (goettingen) correctly! :D
@kevinweichel1798
@kevinweichel1798 7 лет назад
int ack(int m, int n){ if(m==0)return n+1; if(n==0)return ack(m-1, 1); return ack(m-1, ack(m,n-1)); } here's a simple java version for anyone wanting to play with it, overflows pretty easily
@Lition98
@Lition98 6 лет назад
the time for computation blew my mind as same as the hanoi tower, this is astonishing
@ZemKatarn
@ZemKatarn 9 лет назад
This algorithm takes longer to compute than the Ultimate Answer to Life, the Universe, and Everything took.
@pauljmorton
@pauljmorton 8 лет назад
Nice, I tried the function myself before he started showing his results and I thought I did something wrong because it seemed to get stuck at ack(4,1). But apparently it's just so tough to compute.
@JuanSerranoJK
@JuanSerranoJK 9 лет назад
Sorry guys I tried :C but I could not do it: Unhandled System.StackOverflowException.
@rahulbansode1537
@rahulbansode1537 5 лет назад
Do it in python
@ard-janvanetten1331
@ard-janvanetten1331 4 года назад
@@rahulbansode1537 no. python is way to slow for this kind of tasks, because it's interpreted
@4n0ngaming
@4n0ngaming 4 года назад
Obviously. Your stack is way too small to do so many nested stuff
@antoinetanguay1909
@antoinetanguay1909 2 года назад
i had to go into a recursive loop of computerphile videos just to understand this one
@indianakernick3788
@indianakernick3788 6 лет назад
This video taught me how to crash a C++ compiler! template struct Ack { static constexpr size_t value = Ack::value; }; template struct Ack { static constexpr size_t value = Ack::value; }; template struct Ack { static constexpr size_t value = n + 1; }; template struct Ack { static constexpr size_t value = 1; };
Далее
Turing's Enigma Problem (Part 1) - Computerphile
19:00
Programming Loops vs Recursion - Computerphile
12:32
Просмотров 1,5 млн
Lambda Calculus - Computerphile
12:40
Просмотров 1 млн
Where HTML beats C? - Computerphile
9:48
Просмотров 611 тыс.
The Reciprocals of Primes - Numberphile
15:31
Просмотров 1,6 млн
What on Earth is Recursion? - Computerphile
9:40
Просмотров 744 тыс.
Why 7 is Weird - Numberphile
12:03
Просмотров 1,8 млн
Von Neumann Architecture - Computerphile
16:20
Просмотров 640 тыс.
Has Generative AI Already Peaked? - Computerphile
12:48
New Recipe for Pi - Numberphile
14:29
Просмотров 408 тыс.