Solving Recurrence Relation Forward Substitution Explained

Поделиться
HTML-код
  • Опубликовано: 5 сен 2024
  • This video explains and shows step by step how to solve a recurrence relation or recurrence equation using forward substitution method that involves solving a finite mathematical series with application in computer science, algorithm and discrete math. The recurrence formula in this example states that next term of the sequence is equal to two times previous term plus two times the index of the next term. The index of the initial term of the progression is one and the initial term's value is six. Forward substitution is applied to find the formulas for the second term, third term and forth term of the sequence. A clear pattern is then observed in the formulas for those terms. The observed pattern is then extrapolated to write the formula for the general term (nth term) of the sequence. The resulting formula includes a finite series that needed to be solved. A clever and simple difference-of-terms technique is used to convert the series to an -easy-to-compute geometric series in order to find a closed-form formula for the finite series and therefore solve the recurrence relation by finding the mathematical formula that describes the general term (nth term) of the sequence as a function of the index n. The formula states that then nth term of the sequence (with index value n) is equal to 6*2^n - 2*n -4.

Комментарии • 1

  • @STEMprof
    @STEMprof  4 месяца назад +2

    How to solve a recurrence relation or recurrence equation using forward substitution method is explained in this video. More examples are discussed in the following videos:
    Karatsuba Algorithm ruclips.net/video/FEzBs2rrLqs/видео.html
    Math Induction vs Algebraic Method to solve Series ruclips.net/video/8E1VvXaqU-c/видео.html
    Arithmetic Geometric Series Explained example ruclips.net/video/DlvZCh24lUw/видео.html
    Infinite Series Example ruclips.net/video/TD_UfZxMnPU/видео.html
    Toom-Cook (Toom3) ruclips.net/video/1XiSyNzMX6Q/видео.html
    How to solve infinite summation example ruclips.net/video/AsV8UUiAKI8/видео.html
    Solving Euler Tower e^(π(√i)^(√2↑↑∞)) = ? ruclips.net/video/yUErUB7YVmM/видео.html
    Infinite Power Tower ruclips.net/video/JG1lg3aTig8/видео.html
    Solving Infinite Tetration ruclips.net/video/27VYkoUwA4w/видео.html
    Solving Infinite Power Tower (Hyper4) Equation ruclips.net/video/h60sEwCF8eg/видео.html
    I hope that these Math and computer science examples are helpful.