Question

Big-O notation. Let T(n) be given using the recursive formula. T(n) = T(n-1) + n, T(1)...

Big-O notation.

Let

T(n) be given using the recursive formula.

T(n) = T(n-1) + n,

T(1) = 1.

Prove that T(n) = O(n2).

0 0
Add a comment Improve this question Transcribed image text
Answer #1
T(n) = T(n-1) + n,
T(1) = 1.

using substitution method:
---------------------------
T(n)
= T(n-1) + n
= T(n-2) + n-1 + n
= T(n-3) + n-2 + n-1 + n
= T(1) + 2 + ... + n-2 + n-1 + n
= 1 + 2 + ... + n-2 + n-1 + n
This is sum of first n natural numbers. It's formula is n(n+1)/2.
= n(n+1)/2
= (n2+n)/2
we can ignore lower order terms(n) and constant factors(/2).
so, time complexity is O(n2)
T(n) = O(n2)
Add a comment
Know the answer?
Add Answer to:
Big-O notation. Let T(n) be given using the recursive formula. T(n) = T(n-1) + n, T(1)...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT