Recursion Analysis Please respond to the following Examine t
Solution
Most important and popular method of solving recursive method is finding seed value and then substituting it.Recursive function has solution in its definition that it is recursive. If suppose r=2+(r+(r+....))is infinite recursive function if we put it like r=2+r then it makes simpler to find seed value of r by solving it by quadratic equation. Mathematical induction is a method of generalising any statement for large number of items.Like if we want to prove that sum of first n natural numbers is n(n+1)/2 then we will first check it for initial numbers like 0,1,2 then when we will be checking it for k natural numbers then it automatically will be proved for k+1 numbers.
In real.life we see that cards organized when falls fall one by one .Another example is habit of ordering something seeing someone ordering same just infront of us
Thank you
