Recursion and iteration are two great ways to solve problems, but they work a bit differently.
[ \text{fact}(n) = n \times \text{fact}(n-1) \quad \text{with} \quad \text{fact}(0) = 1. ]
This means that to find the factorial of ( n ), you multiply ( n ) by the factorial of ( n-1 ). The base case is when ( n ) is 0, which equals 1.
[ \text{fact}(n) = 1; \quad \text{for } i=1 \text{ to } n, \text{ multiply } \text{fact} \text{ by } i. ]
In simpler terms, you start with 1 and keep multiplying by each number up to ( n ).
In practice, recursion can be fancy and sometimes a bit confusing. On the other hand, iteration is often more direct and easier to understand!
Recursion and iteration are two great ways to solve problems, but they work a bit differently.
[ \text{fact}(n) = n \times \text{fact}(n-1) \quad \text{with} \quad \text{fact}(0) = 1. ]
This means that to find the factorial of ( n ), you multiply ( n ) by the factorial of ( n-1 ). The base case is when ( n ) is 0, which equals 1.
[ \text{fact}(n) = 1; \quad \text{for } i=1 \text{ to } n, \text{ multiply } \text{fact} \text{ by } i. ]
In simpler terms, you start with 1 and keep multiplying by each number up to ( n ).
In practice, recursion can be fancy and sometimes a bit confusing. On the other hand, iteration is often more direct and easier to understand!