diff --git a/README.md b/README.md index 8876dbb..c91de36 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Solve Recurrence Relation using Master Theorem -Learn to solve recurrence relations and find asymptotic complexity using master theorem. See online [demo](http://drunkdeveloper.com/app/master-theorem). +Learn to solve recurrence relations and find asymptotic complexity of decreasing and dividing functions using master theorem. See online [demo](http://drunkdeveloper.com/app/master-theorem). ## Master Theorem diff --git a/index.php b/index.php index 95be36e..3b30366 100644 --- a/index.php +++ b/index.php @@ -10,7 +10,7 @@ - + Solve Recurrence Relation using Master Theorem @@ -34,7 +34,7 @@
Solve Recurrence Relation using Master Theorem
-

Learn to solve recurrence relations and find asymptotic complexity using master theorem.

+

Learn to solve recurrence relations and find asymptotic complexity of decreasing and dividing functions using master theorem.

Master Theorem

Master theorem provides an asymptotic analysis (using Big O notation) for recurrence relations that occur in the analysis of many divide and conquer algorithms.