He's could be the David Attenborough of computer science. "...And here, we observe the C++, in its natural habitat..."
@rykehuss34357 жыл бұрын
Nailed it
@xplinux227 жыл бұрын
"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*
@TampaCEO7 жыл бұрын
That's who he reminds me of!
@douwehuysmans59595 жыл бұрын
"but alas, the buffer overflowed and as you see can see the instruction pointer makes a miraculous jump towards the kernel"
@JamesSpeiser5 жыл бұрын
hahaha
@keistzenon95939 жыл бұрын
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.
@brandenjames24089 жыл бұрын
Keist Zenon just to blow your mind even more, pentation isnt raising tetration to a power, its raising tetration to a tetration
@oliviapalmu55858 жыл бұрын
So it acts like Graham's number?
@carbrickscity2 жыл бұрын
Similar, but Graham is kinda one level above Ackermann.
@DenisovichDev2 жыл бұрын
I wrote 3, 4 in C and it was actually instantaneous. Although 4, 4 caused a buffer overflow
@macchiato_18812 жыл бұрын
@@DenisovichDev he was parsing the deferred chains. You didn't so that why yours was instant.
@christianherrera47299 жыл бұрын
Absolutely fascinating. I can only imagine how much more fascinating it would be if i knew what he was talking about.
@Firestar-rm8df7 жыл бұрын
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
@SteveUrlz7 жыл бұрын
lol, same
@sidharthcs21106 жыл бұрын
Christian Herrera So I'm not alone
@Confucius_766 жыл бұрын
yes! loved it though
@Ligma_Male-ub1ud5 жыл бұрын
Low key just copied and pasted this into an ide I’m in CS1 , but changing my degree plan after this semester
@christophernugent84926 жыл бұрын
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.
@harrynewton47869 жыл бұрын
i don't alwys use recursion...but when i use recursion i don't always use recursion.
@RKBock6 жыл бұрын
to understand recursion, you must first understand recursion
@shadowagent36 жыл бұрын
@@RKBock to write a recursive function you must first write a recursive function to write a recursive function
@nandkishorenangre35415 жыл бұрын
@@shadowagent3 To write a recursive comment some one else must add up the next recursive comment
@JamesSpeiser5 жыл бұрын
holds beer
@mohamedb7375 жыл бұрын
the only way to understand recursive function is to do it recursively
@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
@d_96969 жыл бұрын
Ack(-1, -1); ... The thread running this code has never been seen again.
@lukitree9 жыл бұрын
Herp Derpington haha, yeah gotta add error checking in there ... #include ... assert (m >= 0 && n >= 0); ...
@3216719999 жыл бұрын
lukitree don't use tho, use
@OverSoft9 жыл бұрын
Herp Derpington Define the int's as uint and it'll protect you from this nonsense. :P
@MrMiljaker9 жыл бұрын
+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.
@jakubcislo80297 жыл бұрын
Nah, it just produces StackOverflowError.
@DrZale9 жыл бұрын
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
@nathansmith36088 жыл бұрын
I checked the size of 3 * 2 ** 65333 in python the number itself is 280 lines in windows powershell
@EmptyKingdoms5 жыл бұрын
And it probably just filled the final lines with a bunch of zeroes because it cannot compute that large an integer.
@dramforever5 жыл бұрын
@@EmptyKingdoms Python can
@EmptyKingdoms5 жыл бұрын
@@dramforever using what tools?
@dramforever5 жыл бұрын
@@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.
@EmptyKingdoms5 жыл бұрын
@@dramforever thank you.
@NemosChannel9 жыл бұрын
"and within that VILE second argument.." This is too funny! I like this guy.
@dalerobertson46625 жыл бұрын
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
@polygonofficial114310 жыл бұрын
this dude's voice is absolutely soothing.
@jonorion509510 жыл бұрын
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!
@SteveGouldinSpain10 жыл бұрын
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!
@BlackMambo10 жыл бұрын
Brilliant...!
@djdedan10 жыл бұрын
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?
@SteveGouldinSpain10 жыл бұрын
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!
@djdedan10 жыл бұрын
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!
@SteveGouldinSpain10 жыл бұрын
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.
@Rob-Herrera7 жыл бұрын
I'd love to go to any of Professor Brailford's lectures. I love his passion and knowledge!
@BetrayedEnemy7 жыл бұрын
I just love that you can look at his face an see how much he loves this topic
@billruddock6 жыл бұрын
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
@KnakuanaRka4 жыл бұрын
Yeah, that’s one way to improve it.
@Rudxain2 жыл бұрын
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*
@UNKNOWNKINGTHEGAMER2 жыл бұрын
try 4,4
@jonorion509510 жыл бұрын
Man I sure love Professor Brailsford, I hang on every word he says. Such a great lecturing voice! Such a wise old wizard.
@suave3199 жыл бұрын
I want Professor Brailsford as my lecturer. He's awesome :D
@hamza38386 жыл бұрын
Suave Atore wait is that his name? THATS SUCH A COOL NAME
@paulfletcher461310 жыл бұрын
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.
@themennissvids10 жыл бұрын
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.
@MrKastle0910 жыл бұрын
Graham's number is insane. But the most amazing thing is that the only thing bigger than Graham's Number ... is yo momma XD
@Garbaz10 жыл бұрын
Thats gonna be fun :D It will stop calculating even before you really startet the ackerman part...
@themennissvids10 жыл бұрын
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.
@bitterlemonboy3 жыл бұрын
What about Ack(TREE(g64),TREE(g64))
@WaterCrane6 жыл бұрын
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.
@brendawilliams8062 Жыл бұрын
Like 41666….↗️
@loupax10 жыл бұрын
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
@HebaruSan7 жыл бұрын
How much is it?
@lagduck22097 жыл бұрын
HebaruSan probably at least some, if any
@SwissSareth5 жыл бұрын
Funnily true ...
@sayven2 жыл бұрын
can confirm lol
@TheALPHA15508 жыл бұрын
Ah, nothing like theoretical computer science.
@philronan69299 жыл бұрын
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...
@Computerphile9 жыл бұрын
***** suggest you watch the follow-on video :) >Sean
@philronan69299 жыл бұрын
***** Ah. That explains it!
@idanguttsait9 жыл бұрын
+DaKnOb That is true. I had a StackOverflow on 4,1
@moveaxebx9 жыл бұрын
+Giora Guttsait Try with any functional PL (supports tail call optimization)
@drobilla9 жыл бұрын
+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.
@sth12810 жыл бұрын
It'd be funny if the program returned -1/12.
@CircusBamse10 жыл бұрын
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-tchori708510 жыл бұрын
Minox sta Some would argue that summing natural integers to infinity would be integer as well... : kzbin.info/www/bejne/rV6sZ4uKi7-Lrdk
@kevinmichelet9110 жыл бұрын
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 ?
@Falcrist10 жыл бұрын
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.
@cemerson10 жыл бұрын
Minox sta But adding all the natural numbers must be an integer, right?
@bangpaf23288 жыл бұрын
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
@tombeaudry31438 жыл бұрын
Python, please.
@SonnyGhosh8 жыл бұрын
use like Java, c#, c++, etc
@kraemer-raimund8 жыл бұрын
You can change the recursion limit in Python.
@bangpaf23288 жыл бұрын
Thanks for the replies. I guess I should have known, I'm still pretty wet behind the ears when it comes to programming.
@thomaspappas89468 жыл бұрын
+Raimund yes but how?
@terjeoseberg9906 жыл бұрын
@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.
@KnakuanaRka4 жыл бұрын
Terje Oseberg Yeah, that’s a whoopsie.
@pvic69594 жыл бұрын
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.
@KnakuanaRka4 жыл бұрын
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.
@slugfiller6 жыл бұрын
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.
@nikolaglushkov936 жыл бұрын
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!
@GrooveFederation8 жыл бұрын
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.
@PhilipBlignaut6 жыл бұрын
Great choice of videos subs!!
@mainmast89556 жыл бұрын
it may be time for you/us numerical freaks to push forward.
@NikolajLepka10 жыл бұрын
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
@Poldovico10 жыл бұрын
But I wanted to know why they didn't, and the comments you refer to aren't on the first page anymore D:
@greenya8410 жыл бұрын
This i called "Dynamic programming" :)
@NikolajLepka10 жыл бұрын
Yuriy Grinevich do your research, memoization has its differences
@MartinFracker9 жыл бұрын
Yuriy Grinevich Memoization is a technique that can be involved in dynamic programming.
@hdpasd123lol9 жыл бұрын
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.
@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 Жыл бұрын
any ack out there is finite, regardless of how big it is. Infinity on the other hand literally means not finite.
@JordanMetroidManiac Жыл бұрын
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. :)
+Jerónimo Barraco Mármol A distinct possibility. What was the question?
@jerobarraco9 жыл бұрын
+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.
@truthseeker74979 жыл бұрын
Another 5 minutes and we would have had the answer . . . damn the Vagons! The best laid plans of mice . . .
@blinky8407 жыл бұрын
I would give you an upvote but you are already at 42 and I would hate to ruin that.
@hzenilc10 жыл бұрын
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!
@profdaveb638410 жыл бұрын
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.
@paulpinecone24643 жыл бұрын
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.36892 жыл бұрын
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.
@dplameras3 жыл бұрын
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.
@herp_derpingson10 жыл бұрын
Ackerman(4,2) is equal to 42 :)
@TH3MIN3R30008 жыл бұрын
Herp Derpingson if only, if only...
@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.
@Cross3141510 жыл бұрын
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!
@Omarbistami10 жыл бұрын
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 :)
@golangismyjam2 жыл бұрын
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"
@robertkelleher18503 жыл бұрын
Fantastic explanation. The bit about the big crunch didn't age well, but otherwise... just magic.
@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.
@themodernshoe24668 жыл бұрын
This guy has great personality!
@TehBleuBelly5 жыл бұрын
Counted the number of recursions required to calculate ack(4, 1) and the result was 2, 862, 984, 010. Mind boggling...
@KnakuanaRka4 жыл бұрын
Y2K38 How do you calculate that? Is that its own recursive function?
@abhineetsingh12914 жыл бұрын
In the recursive function create a static variable and increase every time for a recursive call
@KnakuanaRka4 жыл бұрын
abhineet singh Makes sense.
@shiraj25977 жыл бұрын
Just ran into this function while going through SICP, this really helped shed some light on the topic. Thanks!
@Ganerrr Жыл бұрын
I'm confused, you can simulate a turing machine using for loops and thus can implement ack within that?
@yramagicman67510 жыл бұрын
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.
@Ozzah10 жыл бұрын
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.
@aMulliganStew9 жыл бұрын
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.
@jirihavel97669 жыл бұрын
+aMulliganStew No, you can always serialize it by interleaving instructions from different threads.
@jonathanpark46199 жыл бұрын
+Jiří Havel That's still parallelization.
@jirihavel97669 жыл бұрын
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.
@jonathanpark46199 жыл бұрын
Unless you're executing the threads in a serial manner, that's still parallelization.
@jirihavel97669 жыл бұрын
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.
@anonimoculto5 жыл бұрын
4:25 OpenSUSE. Great distro. I use it, version 13.2 , perfectly working nowadays, 01-15-2020, since its release; with firefox 72.0.1 manually installed.
@thinboxdictator67205 жыл бұрын
linux FTW btw I use arch :p
@foolwise47033 жыл бұрын
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
@greg556669 жыл бұрын
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?
@jayeisenhardt13375 жыл бұрын
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.
@douplofigure5 жыл бұрын
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.
@ianzen5 жыл бұрын
Nothing will help speed up the computation, the simple fact of reading and adding two intermediate values take too long.
@raditzan10 жыл бұрын
Ermagherd that lack of indentation is driving me crazy!!
@eliatarasoff587210 жыл бұрын
Agreed. That code would be sooo much easier to read if it were indented! This is like...Computers 101 stuff! ^^;
@miciduve3 жыл бұрын
@@eliatarasoff5872 ermagherd someone learned with python didnt they
@Noname-w7f1e5 жыл бұрын
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!
@alexxcold4 жыл бұрын
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.
@annieworroll43734 жыл бұрын
Using direct computation for m
@annieworroll43734 жыл бұрын
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.
@WorldOfDeepThought10 жыл бұрын
Would ack(m-1,ack(m-1,ack(m,n-1))) still be superexponential or would it have an even bigger growth?
@vakabus10 жыл бұрын
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?
@matt_the_musician4 жыл бұрын
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!
@chaosopher238 жыл бұрын
It's time to build a computer I don't mind crashing.
@DJRosted5 жыл бұрын
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.
@darkangel23473 жыл бұрын
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.
@RacTac3 жыл бұрын
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.
@zackinator14396 жыл бұрын
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?
@furbyfubar4 жыл бұрын
That's an easy but not a very interesting call since: ack(0,41) = 42
@Wouter1012310 жыл бұрын
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?
@vekyll5 жыл бұрын
Yes. You should at least read Wikipedia. :-) If you want to know more, including the motivation for the original Ackermann function, just message me.
@abhayshankar87623 жыл бұрын
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.
@barmalini28 күн бұрын
It's blood-chilling. Clearly, knowing too much mathematics can be just as disadvantageous for a computer engineer as knowing too little. It makes me want to sit down and cry in a corner.
@SkySpiral7_Lets_play3 жыл бұрын
Technically anything computable can be done in a loop if you manage your own state stack and actually that would make it a lot more memory efficient since the stack wouldn't include useless junk like line numbers. 11:35 FYI 3* 2**65533 minutes = 1.429 x10^19722 average Gregorian years. Estimated age of the universe is only 14 billion years = 1.4 x10^10. Estimated heat death of the universe will be on year 10^10000 so that first number has 9,722 larger exponent. That said wolfram alpha can make a lot of shortcuts by giving an estimate instead of perfect precision and the answer to ackermann(4,2) is about 2 × 10^19728. ackermann(4,3) on the other hand it can't even estimate (it gives an answer in arrow notation). Also at 10:07 the number didn't max out (I verified that answer was correct). Max unsigned 2 bytes (a Java short is 2 bytes) is 65,536 but ackermann(4,1) is 65,533 (only 3 less).
@blingkid0010 жыл бұрын
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.
@Ozzah10 жыл бұрын
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 ;)
@jervey12310 жыл бұрын
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
@Niosus10 жыл бұрын
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
@ernhamDjinn6 жыл бұрын
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-gr22986 жыл бұрын
Nope . Thats memorization for recursion . That's not the problem in this case
@mainmast89556 жыл бұрын
ur onto something
@alaamroue8 жыл бұрын
ack(tree(3), graham's number)
@ChristopherKing2888 жыл бұрын
7
@pranamd18 жыл бұрын
@abcdefzhij8 жыл бұрын
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.
@ゾカリクゾ7 жыл бұрын
42
@carbrickscity6 жыл бұрын
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.
@ElShogoso8 жыл бұрын
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
@sandessharma81953 жыл бұрын
I tried to visualize that recursion in my head, and my brain's stack just overflowed. 🤣
@Ezechielpitau9 жыл бұрын
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?
@MrPoutsesMple9 жыл бұрын
+Ezechielpitau I think you can override this python recursive call barrier somehow.
@carnaedy8 жыл бұрын
+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.
@Ezechielpitau8 жыл бұрын
+Paulina Jonušaitė ah ok thx, I'll have a look into how that works :)
@techmage898 жыл бұрын
+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.
@RonJohn639 жыл бұрын
5:18 In 2014 he was writing in K&R C???
@mslgn9 жыл бұрын
RonJohn63 Why not? Simple and beauty.
@RandallHayter9 жыл бұрын
Seems to provide an easy to understand embodiment of the algorithm. Did you want him to use fortran?
@KaneDragon9 жыл бұрын
Randall Hayter How about *ANSI*/ISO C (1989+)? "int ack(int m, int n) instead of "int ack(m,n) int m, n;", etc...
@RonJohn637 жыл бұрын
Exactly. While formula translation is obviously the proper language to use, if you're going to write in C, then use ANSI C.
@philipsalter93410 жыл бұрын
g64 is grahams number (MUUUCH bigger than a googleplex). see numberphiles video: Graham's Number - Numberphile
@AaronHollander3145 жыл бұрын
TREE(3)
@area51xi2 жыл бұрын
On computerphile, you're never too far from the deep end.
@kered137 жыл бұрын
5:16: You highlighted the wrong line. The highlighted line is declaring the types of the parameters, m and n. The return type of the function is declared by "int" in the line above.
@HackingWithTheLeviathan9 жыл бұрын
You use openSUSE! Me too! ^_^ And I had the Ackermann function in a lecture at ETH Zürich! Keep on doing these videos! :D
@ZoggFromBetelgeuse10 жыл бұрын
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.
@Jcarr2509 жыл бұрын
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
@garethdean63829 жыл бұрын
Umbrall Let's feed it an xkcd number.
@coopergates96809 жыл бұрын
Smonjirez G65 has the G64 arrows between two 3s. His number, though, is a lot less than G66.
@Jcarr2509 жыл бұрын
Cooper Gates That's what I was saying. It's not even just smaller than G66 it's smaller than G65
@coopergates96809 жыл бұрын
Umbrall No, he put G64 arrows between G64 twice instead of two 3s, so it is a lot larger than G65.
@eliotcougar10 жыл бұрын
Can a quantum computer be programmed to calculate ackerman function and how many qubits will be needed for that?..
@unvergebeneid10 жыл бұрын
I don't actually know but I'd be really surprised if there was an asymptotically faster quantum algorithm to compute the Ackermann function.
@yousorooo10 жыл бұрын
That's not what a quantum computer does. It can only calculates combinations.
@unvergebeneid10 жыл бұрын
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 ;)
@Leopard210 жыл бұрын
From my understanding of QM computing it will give you a possible answer and you'd still have to check its validity. So... no
@Leopard210 жыл бұрын
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!
@Rising_Pho3nix_237 жыл бұрын
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."
@noneofyourbeeswax34605 жыл бұрын
9:20 It would be faster to put the printf statement inside the function if you want to test it. That way you avoid wasting computations by taking advantage of the fact that computaions of ackermanns fuunction include computations of ackermanns function with lower arguments.
@The2bdkid8 жыл бұрын
I compiled the same code and I'm getting different numbers.. then it crashes at ack(4,1).
@rickveens9210 жыл бұрын
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
@xybersurfer10 жыл бұрын
i bet it can worked out in a loop with the use of some kind of list
@telaferrum6 жыл бұрын
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.
@h_3795 Жыл бұрын
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.
@pauljmorton8 жыл бұрын
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.
@stevepittman377010 жыл бұрын
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
@KnakuanaRka6 жыл бұрын
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.
@ZemKatarn10 жыл бұрын
This algorithm takes longer to compute than the Ultimate Answer to Life, the Universe, and Everything took.
@snipzmattio58872 жыл бұрын
Dont you wake up one day and say: "Shit, i need to do some math" Because i sure thing do
@anish_cr5 жыл бұрын
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.
@pratikmaitra85435 жыл бұрын
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.
@landmanland10 жыл бұрын
Any particular reason to use the old form of C function declarations? int ack(m, n) int m, n; should be written in ANSI C as: int ack(int m, int n)
@PvblivsAelivs10 жыл бұрын
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.
@aim29863 жыл бұрын
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.
@PvblivsAelivs3 жыл бұрын
@@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.
@aim29863 жыл бұрын
@@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.
@PvblivsAelivs3 жыл бұрын
@@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.
@aim29863 жыл бұрын
@@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.
@janmeznik80708 жыл бұрын
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).
@BryonLape8 жыл бұрын
9:04 - Holy crap. That's written in good ole K&R C. How old is that print out?
@oossgl7 жыл бұрын
That voice is really calming and confortable, ideal for teaching!!! :)
@ashen0789 жыл бұрын
Shouldn't that have stack overflowed days ago written in C?
@trefod9 жыл бұрын
Sometime in the mid nineties when the big crunch was swept off the table in cosmology, Professor Brailsford had already reached his personal StackOverflow and couldn't take in new information. It happens to all of us.
@tompov2278 жыл бұрын
how does that computer not run out of stack space
@nocog10 жыл бұрын
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
@profdaveb638410 жыл бұрын
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 ... :-)
@arthurobrien74245 жыл бұрын
Me: This sounds like Gödel. Professor: Gödel! Me: Ha, I was onto you the whole time!