Dragonfall
- 1,023
- 5
Can someone explain this "constructive induction" needed to solve recursive equations?
For example, use "constructive induction" to show that the following is \Theta (n)
T(n) = 1 \leftrightarrow n = 1,2
T(n) = T\lceil n/4\rceil + T \lceil 2n/3\rceil + \Theta (n) \leftrightarrow n > 2
For example, use "constructive induction" to show that the following is \Theta (n)
T(n) = 1 \leftrightarrow n = 1,2
T(n) = T\lceil n/4\rceil + T \lceil 2n/3\rceil + \Theta (n) \leftrightarrow n > 2
Last edited: