SlideShare a Scribd company logo
1 of 2
Download to read offline
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470
@ IJTSRD | Unique Paper ID – IJTSRD26662 | Volume – 3 | Issue – 5 | July - August 2019 Page 1341
Impact of Linear Homogeneous Recurrent Relation Analysis
Thidar Hlaing
University of computer Studies (Hpa-An), Kayin, Myanmar
How to cite this paper: Thidar Hlaing
"Impact of Linear Homogeneous
Recurrent Relation Analysis" Published in
International
Journal of Trend in
Scientific Research
and Development
(ijtsrd), ISSN: 2456-
6470, Volume-3 |
Issue-5, August
2019,pp.1341-1342,
https://doi.org/10.31142/ijtsrd26662
Copyright © 2019 by author(s) and
International Journal ofTrend inScientific
Research and Development Journal. This
is an Open Access article distributed
under the terms of
the Creative
Commons Attribution
License (CC BY 4.0)
(http://creativecommons.org/licenses/by
/4.0)
ABSTRACT
A linear homogeneous recurrence relation of degree k with constant
coefficients is a recurrence. A recurrence relation is an equation that
recursively defines a sequence or multidimensional array of values, once one
or more initial terms are given; each further term of the sequence or array is
defined as a function of the preceding terms.
1. INTRODUCTION
A recurrence relation is an equation that defines a sequencebasedona rulethat
gives the next term as a function of the previous term(s). The simplestformofa
recurrence relation is the case where the next term depends only on the
immediately previous term. If wedenotethe nnthtermin thesequence by xnxn,
such a recurrence relation is of the form xn+1=f(xn)xn+1=f(xn) for some
function ff. One such example is xn+1=2−xn/2.xn+1=2−xn/2. A recurrence
relation can also be higher order, where the term xn+1xn+1 could depend not
only on the previous term xnxn but also on earlier terms such
as xn−1xn−1, xn−2xn−2, etc. A second order recurrence relation depends just
on xnxn and xn−1xn−1 and is of the form xn+1=f(xn,xn−1)xn+1=f(xn,xn−1)for
some function ff with two inputs. For example, the recurrence
relation xn+1=xn+xn−1xn+1=xn+xn−1 cangeneratethe Fibonaccinumbers.To
generate sequence basd on a recurrence relation, one must start with some
initial values.
For a first order recursion xn+1=f(xn)xn+1=f(xn), one just
needs to start with an initial value x0x0 and can generate all
remaining terms using the recurrence relation. For a second
orderrecursionxn+1=f(xn,xn−1)xn+1=f(xn,xn−1),oneneeds
to begin with two values x0x0 and x1x1. Higher order
recurrence relations require correspondingly more initial
values.
A linear homogeneous recurrence of order kk is expressed
this way: A0an+A1an−1+A2an−2+⋯+Akan−k=0
2. Objectives
The aim of this paper is to solve the linear recurrence
relation
xn+1 = a0 xn + a1 xn−1 + · ·· + an−1 x1 + an x0 , n =
0, 1, 2, . . . ,
when its constant coefficients are in arithmetic, respective
geometric progression. Rather surprising, when the
coefficients are in arithmetic progression, the solution is a
sequence of certain generalized Fibonacci numbers, but not
of usual Fibonacci numbers, while if they are in geometric
progression the solution is again a geometric progression,
with different ratio. Recurrence relations con bedividedinto
two: Linear and Non-Linear. Linear homogeneous
recurrence relations with constant coefficients; Solving
linear homogeneous recurrence relations with constant
coefficients; Solving linear homogeneous recurrence
relations with constantcoefficientsofdegreetwoanddegree
three; Generating functions; Using generating functions to
solve recurrence relations. Some recurrence relations are
solvable using algebraic techniques, but they’re often tricky,
they require some math many of you don’t know, and it still
won’t work for many relations.
3. Methodology
Linear Homogeneous Recurrence Relations Definition: A
linear homogeneous recurrence relation of degree k with
constant coefficients is a recurrence relation of the form a n
= c 1 a n −1 + c 2 a n −2 + ….. + c k a n − k, where c 1, c 2, ….,c
k are real numbers, and c k ≠ 0 it is linear because the right-
hand side is a sum of the previous terms of the sequence
each multiplied by a function ofn.itis homogeneous because
no terms occur that are not multiples of the a j s. Each
coefficient is a constant. The degree is k because a n is
expressed in terms of the previous k terms of the sequence.
By strong induction, a sequence satisfying such arecurrence
relation is uniquely determined by the recurrence relation
and the k initial conditions a 0 = C 0, a 0 = C 1, …, a k −1 = C k
−1. Examples of Linear Homogeneous Recurrence Relations
P n = (1.11) P n-1 linear homogeneous recurrence relationof
degree one f n = f n-1 + f n-2 linear homogeneous recurrence
relation of degree two not linear H n = 2 H n −1 + 1 not
homogeneous B n = n B n −1 coef icients are not constants.
SolvingLinearHomogeneous RecurrenceRelations The basic
approach is to look for solutions of the form a n = r n, where
r is a constant. Note that a n = r n is a solution to the
recurrence relation a n = c 1 a n −1 + c 2 a n −2 + ⋯ + c k a n
− k if and only if r n = c 1 r n −1 + c 2 r n −2 + ⋯ + c k r n − k.
Algebraic manipulationyieldsthecharacteristicequation: rk
− c 1 r k −1 − c 2 r k −2 − ⋯ − c k −1 r − c k = 0 The sequence
{a n } with a n = r n is a solution if and only if r is a solution to
the characteristic equation. The solutions to the
characteristic equation are called the characteristic roots of
the recurrence relation. The roots areusedtogiveanexplicit
IJTSRD26662
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26662 | Volume – 3 | Issue – 5 | July - August 2019 Page 1342
formula for all the solutions of the recurrence relation.
Solving Linear Homogeneous Recurrence Relations of
Degree Two:
Theorem 1: Let c 1 and c 2 be real numbers. Suppose that r 2
– c 1 r – c 2 = 0 has two distinct roots r 1 and r 2. Then the
sequence {a n } is a solution to the recurrence relation a n = c
1 a n −1 + c 2 a n −2 if and only if for n = 0, 1, 2,…, where α 1
and α 2 are constants.
Example: What is the solution to the recurrence relation a n
= a n −1 + 2 a n −2 with a 0 = 2 and a 1 = 7 ? Solution: The
characteristic equation is r 2 − r − 2 = 0. Its roots are r = 2
and r = −1. Therefore, {a n } is a solution to the recurrence
relation if and only if a n = α 1 2 n + α 2 ( −1 ) n, for some
constants α 1 and α 2. To find the constants α 1 and α 2, note
that a 0 = 2 = α 1 + α 2 and a 1 = 7 = α 1 2 + α 2 ( −1 ). Solving
these equations, we find that α 1 = 3 and α 2 = −1. Hence, the
solution is the sequence {a n } with a n = 3∙2 n − ( −1 ) n.
To find an explicit formula for the Fibonacci numbers: The
sequence of Fibonacci numbers satisfies the recurrence
relation f n = f n −1 + f n −2 with the initial conditions: f 0 = 0
and f 1 = 1. Solution: The roots of the characteristic equation
r 2 – r – 1 = 0. For some constants α 1 and α 2: Using the
initial conditions f 0 = 0 and f 1 = 1, we have Solving, we
obtain.
Theorem 2 : Let c 1 and c 2 be real numbers with c 2 ≠ 0.
Suppose that r 2 – c 1 r – c 2 = 0 has one repeated root r 0.
Then the sequence {a n } is a solution to the recurrence
relation a n = c 1 a n −1 + c 2 a n −2 if and only if for n =
0,1,2,…, where α 1 and α 2 are constants.
Example: What is the solution to the recurrence relation a n
= 6a n −1 − 9 a n −2 with a 0 = 1 and a 1 = 6? Solution: The
characteristic equation is r 2 − 6 r + 9 = 0. The only root is r =
3. Therefore, {a n } is a solution to the recurrence relation if
and only if a n = α 1 3 n + α 2 n( 3 ) n where α 1 and α 2 are
constants. To find the constants α 1 and α 2, note that a 0 = 1
= α 1 and a 1 = 6 = α 1 ∙ 3 + α 2 ∙3. Solving, we find that α 1 =
1 and α 2 = 1. Hence, a n = 3 n + n 3 n.
Solving Linear Homogeneous Recurrence Relations of
Arbitrary Degree This theorem can be used to solve linear
homogeneous recurrence relations with constant
coefficients of any degree when the characteristic equation
has distinct roots. Theorem 3 : Let c 1, c 2,…, c k be real
numbers. Suppose that the characteristic equation r k – c 1 r
k −1 –⋯ – c k = 0 has k distinct roots r 1, r 2, …, r k. Then a
sequence {a n } is a solution of the recurrence relation a n =c
1 a n −1 + c 2 a n −2 + ….. + c k a n − k if and only if for n = 0,
1, 2, …, where α 1, α 2,…, α k are constants.
4. Method and Solution
Un = C1Un-1+ C2Un-2+ ……..+ Cd Un-d
Where C1, C2, ……. , Cd are number and Cd ≠0.
Pn = Un+ U' and q n =β U n
Pn = (C1 Un-1 +C2 Un-2 + ……. + Cd Un-d) + ( Cn U'n +C2U'n-2 + …..+
Cd U'n-d)
= C1 (Un-1 + U'n-1) + C2 (Un-2 + U'n-2 ) +…….+ Cd ( Un-d + U'n-d)
= C1 Pn-1 + C2 Pn-2 + …… + Cd P n-d
So, P n is a solution of the recurrence.
qn = β Un
= β ( C1 Un-1 + C2 Un-2 + ….. + Cd Un-d)
= C1 (βUn-1) + C2 (β Un-2) + …… + Cd (β Un-d)
= C1 qn-1 + C2 qn-2 + …. + Cd q n-d
So, q n is a solution of recurrence.
Example: What is the solution of recurrence relation.
Un = 2 Un-1 +Un-2 – 2 Un-3, U0 =3, U1=6, U2=0
The Characteristic equation is
xn- 2 xn-1 - xn-2+ 2xn-3 =0
x3-2x2-x+2 =0
x1=-1, x2=2, x3=1
The general solution is Un= β1x1
n+ β2x2
n+β3x3
n
Un= β1(–1)n+ β22n+β31n
U0=3 β1+β2+β3=3
U1=6 –β1+2β2+β3=6
U2=0 β1+4β2+β3=0
β1=–2, β2= –1, β3=6
The solution is Un= (–2) (–1)n+(–1)2n+6
5. Conclusion
A simple and efficient method for solving linear
homogeneous recursive relations has been introduced,
which mainly involves synthetic divisions. This method has
the advantage that it does not need to use generating
function techniques or solve a system of linear equations to
determine the unknowncoefficients ofthesolution.A variety
of techniques is available for finding explicit formulas for
special classes of recursivelydefinedsequences.Themethod
explained here works for the Fibonacci and other similarly
defined sequences.
Reference
[1] https://math.stackexchange.com/questions/246221/
what-are-linear-homogeneous-and-non-homoegenous-
recurrence-relations
[2] https://mathinsight.org/definition/recurrence_relatio
n
[3] Mircea I. Cîrnu.”Linear recurrence relations with the
coefficients in progression”; Annales Mathematicae et
Informaticae; 42 (2013) pp. 119–127;
https://www.researchgate.net/publication/26042484
9
[4] Yiu-Kwong Man. “Solving Linear Homogeneous
Recurrence Relation via the Inverse of Vander monde
Matrix”; Proceedings of the International Multi
Conference of Engineers andComputerScientists2018
Vol I IMECS 2018, March 14-16, 2018, Hong Kong
[5] A. G. Shannon, R. P. Loh,R. S. Melham,A. F. Horadam“A
Search for Solutions of a Functional Equation”
https://link.springer.com/chapter/10.1007/978-94-
009-0223-7_36
[6] https://www.usna.edu/Users/cs/crabbe/2004-
01/SI262/recur/recur.pdf
-
-

More Related Content

What's hot

CMSC 56 | Lecture 17: Matrices
CMSC 56 | Lecture 17: MatricesCMSC 56 | Lecture 17: Matrices
CMSC 56 | Lecture 17: Matricesallyn joy calcaben
 
Discrete maths tutorials
Discrete maths tutorialsDiscrete maths tutorials
Discrete maths tutorialsDIT University
 
Discrete maths questions
Discrete maths questionsDiscrete maths questions
Discrete maths questionsDIT University
 
Recurrence Relation
Recurrence RelationRecurrence Relation
Recurrence RelationPapu Kumar
 
Inmo 2010 problems and solutions
Inmo 2010 problems and solutionsInmo 2010 problems and solutions
Inmo 2010 problems and solutionsaskiitians
 
Maths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectorsMaths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectorsJaydev Kishnani
 
recurence solutions
recurence solutionsrecurence solutions
recurence solutionssoumya8396
 
Chap 1 real number
Chap 1 real numberChap 1 real number
Chap 1 real numberJNV
 
CMSC 56 | Lecture 8: Growth of Functions
CMSC 56 | Lecture 8: Growth of FunctionsCMSC 56 | Lecture 8: Growth of Functions
CMSC 56 | Lecture 8: Growth of Functionsallyn joy calcaben
 
Chapter 5 Polynomials
Chapter 5 PolynomialsChapter 5 Polynomials
Chapter 5 PolynomialsReema
 
MIT Math Syllabus 10-3 Lesson 8: Inequalities
MIT Math Syllabus 10-3 Lesson 8: InequalitiesMIT Math Syllabus 10-3 Lesson 8: Inequalities
MIT Math Syllabus 10-3 Lesson 8: InequalitiesLawrence De Vera
 
Rational Exponents
Rational ExponentsRational Exponents
Rational ExponentsPhil Saraspe
 
5.3 geometric sequences and sums
5.3 geometric sequences and sums5.3 geometric sequences and sums
5.3 geometric sequences and sumsmath260
 
IIT JEE - 2008 ii- mathematics
IIT JEE  - 2008  ii- mathematicsIIT JEE  - 2008  ii- mathematics
IIT JEE - 2008 ii- mathematicsVasista Vinuthan
 
Assignments for class XII
Assignments for class XIIAssignments for class XII
Assignments for class XIIindu thakur
 
Eigen values and eigenvectors
Eigen values and eigenvectorsEigen values and eigenvectors
Eigen values and eigenvectorsAmit Singh
 
Class 11 maths support material
Class 11 maths support materialClass 11 maths support material
Class 11 maths support materialnitishguptamaps
 

What's hot (20)

CMSC 56 | Lecture 17: Matrices
CMSC 56 | Lecture 17: MatricesCMSC 56 | Lecture 17: Matrices
CMSC 56 | Lecture 17: Matrices
 
Discrete maths tutorials
Discrete maths tutorialsDiscrete maths tutorials
Discrete maths tutorials
 
.
..
.
 
Discrete maths questions
Discrete maths questionsDiscrete maths questions
Discrete maths questions
 
Recurrence Relation
Recurrence RelationRecurrence Relation
Recurrence Relation
 
Inmo 2010 problems and solutions
Inmo 2010 problems and solutionsInmo 2010 problems and solutions
Inmo 2010 problems and solutions
 
Maths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectorsMaths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectors
 
recurence solutions
recurence solutionsrecurence solutions
recurence solutions
 
Roots and Radicals
Roots and RadicalsRoots and Radicals
Roots and Radicals
 
Chap 1 real number
Chap 1 real numberChap 1 real number
Chap 1 real number
 
CMSC 56 | Lecture 8: Growth of Functions
CMSC 56 | Lecture 8: Growth of FunctionsCMSC 56 | Lecture 8: Growth of Functions
CMSC 56 | Lecture 8: Growth of Functions
 
Chapter 5 Polynomials
Chapter 5 PolynomialsChapter 5 Polynomials
Chapter 5 Polynomials
 
MIT Math Syllabus 10-3 Lesson 8: Inequalities
MIT Math Syllabus 10-3 Lesson 8: InequalitiesMIT Math Syllabus 10-3 Lesson 8: Inequalities
MIT Math Syllabus 10-3 Lesson 8: Inequalities
 
Rational Exponents
Rational ExponentsRational Exponents
Rational Exponents
 
IITJEE Mathematics 2007
IITJEE Mathematics   2007IITJEE Mathematics   2007
IITJEE Mathematics 2007
 
5.3 geometric sequences and sums
5.3 geometric sequences and sums5.3 geometric sequences and sums
5.3 geometric sequences and sums
 
IIT JEE - 2008 ii- mathematics
IIT JEE  - 2008  ii- mathematicsIIT JEE  - 2008  ii- mathematics
IIT JEE - 2008 ii- mathematics
 
Assignments for class XII
Assignments for class XIIAssignments for class XII
Assignments for class XII
 
Eigen values and eigenvectors
Eigen values and eigenvectorsEigen values and eigenvectors
Eigen values and eigenvectors
 
Class 11 maths support material
Class 11 maths support materialClass 11 maths support material
Class 11 maths support material
 

Similar to Impact of Linear Homogeneous Recurrent Relation Analysis

RecurrenceRelations.ppt
RecurrenceRelations.pptRecurrenceRelations.ppt
RecurrenceRelations.pptMumitAhmed1
 
pdf of recurrence relation which is used in statistics
pdf of recurrence relation which is used in statisticspdf of recurrence relation which is used in statistics
pdf of recurrence relation which is used in statisticspranjaltarte
 
Recurrence_Theory.pptx studdents nees free
Recurrence_Theory.pptx studdents nees freeRecurrence_Theory.pptx studdents nees free
Recurrence_Theory.pptx studdents nees freeWhite44420
 
LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS
 LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS
LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTSAartiMajumdar1
 
Solving recurrences
Solving recurrencesSolving recurrences
Solving recurrencesWaqas Akram
 
8.-DAA-LECTURE-8-RECURRENCES-AND-ITERATION-METHOD.pdf
8.-DAA-LECTURE-8-RECURRENCES-AND-ITERATION-METHOD.pdf8.-DAA-LECTURE-8-RECURRENCES-AND-ITERATION-METHOD.pdf
8.-DAA-LECTURE-8-RECURRENCES-AND-ITERATION-METHOD.pdfRishikeshJha33
 
Recurrence equations
Recurrence equationsRecurrence equations
Recurrence equationsTarun Gehlot
 
Analysis Of Algorithms Ii
Analysis Of Algorithms IiAnalysis Of Algorithms Ii
Analysis Of Algorithms IiSri Prasanna
 
Solving linear homogeneous recurrence relations
Solving linear homogeneous recurrence relationsSolving linear homogeneous recurrence relations
Solving linear homogeneous recurrence relationsDr. Maamoun Ahmed
 
Aieee maths-quick review
Aieee maths-quick reviewAieee maths-quick review
Aieee maths-quick reviewSharath Kumar
 
6.sequences and series Further Mathematics Zimbabwe Zimsec Cambridge
6.sequences and series   Further Mathematics Zimbabwe Zimsec Cambridge6.sequences and series   Further Mathematics Zimbabwe Zimsec Cambridge
6.sequences and series Further Mathematics Zimbabwe Zimsec Cambridgealproelearning
 
sequence and series.docx
sequence and series.docxsequence and series.docx
sequence and series.docxGetachew Mulaw
 
Lecture-4 Reduction of Quadratic Form.pdf
Lecture-4 Reduction of Quadratic Form.pdfLecture-4 Reduction of Quadratic Form.pdf
Lecture-4 Reduction of Quadratic Form.pdfRupesh383474
 

Similar to Impact of Linear Homogeneous Recurrent Relation Analysis (20)

RecurrenceRelations.ppt
RecurrenceRelations.pptRecurrenceRelations.ppt
RecurrenceRelations.ppt
 
pdf of recurrence relation which is used in statistics
pdf of recurrence relation which is used in statisticspdf of recurrence relation which is used in statistics
pdf of recurrence relation which is used in statistics
 
Recurrence_Theory.pptx studdents nees free
Recurrence_Theory.pptx studdents nees freeRecurrence_Theory.pptx studdents nees free
Recurrence_Theory.pptx studdents nees free
 
LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS
 LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS
LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS
 
Maths
MathsMaths
Maths
 
Solving recurrences
Solving recurrencesSolving recurrences
Solving recurrences
 
Vectors2
Vectors2Vectors2
Vectors2
 
Ch07 6
Ch07 6Ch07 6
Ch07 6
 
8.-DAA-LECTURE-8-RECURRENCES-AND-ITERATION-METHOD.pdf
8.-DAA-LECTURE-8-RECURRENCES-AND-ITERATION-METHOD.pdf8.-DAA-LECTURE-8-RECURRENCES-AND-ITERATION-METHOD.pdf
8.-DAA-LECTURE-8-RECURRENCES-AND-ITERATION-METHOD.pdf
 
Recurrence equations
Recurrence equationsRecurrence equations
Recurrence equations
 
01_AJMS_317_21.pdf
01_AJMS_317_21.pdf01_AJMS_317_21.pdf
01_AJMS_317_21.pdf
 
Analysis Of Algorithms Ii
Analysis Of Algorithms IiAnalysis Of Algorithms Ii
Analysis Of Algorithms Ii
 
Solving linear homogeneous recurrence relations
Solving linear homogeneous recurrence relationsSolving linear homogeneous recurrence relations
Solving linear homogeneous recurrence relations
 
Sequence and Series
Sequence and SeriesSequence and Series
Sequence and Series
 
Aieee maths-quick review
Aieee maths-quick reviewAieee maths-quick review
Aieee maths-quick review
 
Final
Final Final
Final
 
6.sequences and series Further Mathematics Zimbabwe Zimsec Cambridge
6.sequences and series   Further Mathematics Zimbabwe Zimsec Cambridge6.sequences and series   Further Mathematics Zimbabwe Zimsec Cambridge
6.sequences and series Further Mathematics Zimbabwe Zimsec Cambridge
 
sequence and series.docx
sequence and series.docxsequence and series.docx
sequence and series.docx
 
Formular
FormularFormular
Formular
 
Lecture-4 Reduction of Quadratic Form.pdf
Lecture-4 Reduction of Quadratic Form.pdfLecture-4 Reduction of Quadratic Form.pdf
Lecture-4 Reduction of Quadratic Form.pdf
 

More from ijtsrd

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementationijtsrd
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...ijtsrd
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospectsijtsrd
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...ijtsrd
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...ijtsrd
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...ijtsrd
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Studyijtsrd
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...ijtsrd
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...ijtsrd
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...ijtsrd
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...ijtsrd
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...ijtsrd
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadikuijtsrd
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...ijtsrd
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...ijtsrd
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Mapijtsrd
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Societyijtsrd
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...ijtsrd
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...ijtsrd
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learningijtsrd
 

More from ijtsrd (20)

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
 

Recently uploaded

internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...jaredbarbolino94
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupJonathanParaisoCruz
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 

Recently uploaded (20)

internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized Group
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 

Impact of Linear Homogeneous Recurrent Relation Analysis

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470 @ IJTSRD | Unique Paper ID – IJTSRD26662 | Volume – 3 | Issue – 5 | July - August 2019 Page 1341 Impact of Linear Homogeneous Recurrent Relation Analysis Thidar Hlaing University of computer Studies (Hpa-An), Kayin, Myanmar How to cite this paper: Thidar Hlaing "Impact of Linear Homogeneous Recurrent Relation Analysis" Published in International Journal of Trend in Scientific Research and Development (ijtsrd), ISSN: 2456- 6470, Volume-3 | Issue-5, August 2019,pp.1341-1342, https://doi.org/10.31142/ijtsrd26662 Copyright © 2019 by author(s) and International Journal ofTrend inScientific Research and Development Journal. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (CC BY 4.0) (http://creativecommons.org/licenses/by /4.0) ABSTRACT A linear homogeneous recurrence relation of degree k with constant coefficients is a recurrence. A recurrence relation is an equation that recursively defines a sequence or multidimensional array of values, once one or more initial terms are given; each further term of the sequence or array is defined as a function of the preceding terms. 1. INTRODUCTION A recurrence relation is an equation that defines a sequencebasedona rulethat gives the next term as a function of the previous term(s). The simplestformofa recurrence relation is the case where the next term depends only on the immediately previous term. If wedenotethe nnthtermin thesequence by xnxn, such a recurrence relation is of the form xn+1=f(xn)xn+1=f(xn) for some function ff. One such example is xn+1=2−xn/2.xn+1=2−xn/2. A recurrence relation can also be higher order, where the term xn+1xn+1 could depend not only on the previous term xnxn but also on earlier terms such as xn−1xn−1, xn−2xn−2, etc. A second order recurrence relation depends just on xnxn and xn−1xn−1 and is of the form xn+1=f(xn,xn−1)xn+1=f(xn,xn−1)for some function ff with two inputs. For example, the recurrence relation xn+1=xn+xn−1xn+1=xn+xn−1 cangeneratethe Fibonaccinumbers.To generate sequence basd on a recurrence relation, one must start with some initial values. For a first order recursion xn+1=f(xn)xn+1=f(xn), one just needs to start with an initial value x0x0 and can generate all remaining terms using the recurrence relation. For a second orderrecursionxn+1=f(xn,xn−1)xn+1=f(xn,xn−1),oneneeds to begin with two values x0x0 and x1x1. Higher order recurrence relations require correspondingly more initial values. A linear homogeneous recurrence of order kk is expressed this way: A0an+A1an−1+A2an−2+⋯+Akan−k=0 2. Objectives The aim of this paper is to solve the linear recurrence relation xn+1 = a0 xn + a1 xn−1 + · ·· + an−1 x1 + an x0 , n = 0, 1, 2, . . . , when its constant coefficients are in arithmetic, respective geometric progression. Rather surprising, when the coefficients are in arithmetic progression, the solution is a sequence of certain generalized Fibonacci numbers, but not of usual Fibonacci numbers, while if they are in geometric progression the solution is again a geometric progression, with different ratio. Recurrence relations con bedividedinto two: Linear and Non-Linear. Linear homogeneous recurrence relations with constant coefficients; Solving linear homogeneous recurrence relations with constant coefficients; Solving linear homogeneous recurrence relations with constantcoefficientsofdegreetwoanddegree three; Generating functions; Using generating functions to solve recurrence relations. Some recurrence relations are solvable using algebraic techniques, but they’re often tricky, they require some math many of you don’t know, and it still won’t work for many relations. 3. Methodology Linear Homogeneous Recurrence Relations Definition: A linear homogeneous recurrence relation of degree k with constant coefficients is a recurrence relation of the form a n = c 1 a n −1 + c 2 a n −2 + ….. + c k a n − k, where c 1, c 2, ….,c k are real numbers, and c k ≠ 0 it is linear because the right- hand side is a sum of the previous terms of the sequence each multiplied by a function ofn.itis homogeneous because no terms occur that are not multiples of the a j s. Each coefficient is a constant. The degree is k because a n is expressed in terms of the previous k terms of the sequence. By strong induction, a sequence satisfying such arecurrence relation is uniquely determined by the recurrence relation and the k initial conditions a 0 = C 0, a 0 = C 1, …, a k −1 = C k −1. Examples of Linear Homogeneous Recurrence Relations P n = (1.11) P n-1 linear homogeneous recurrence relationof degree one f n = f n-1 + f n-2 linear homogeneous recurrence relation of degree two not linear H n = 2 H n −1 + 1 not homogeneous B n = n B n −1 coef icients are not constants. SolvingLinearHomogeneous RecurrenceRelations The basic approach is to look for solutions of the form a n = r n, where r is a constant. Note that a n = r n is a solution to the recurrence relation a n = c 1 a n −1 + c 2 a n −2 + ⋯ + c k a n − k if and only if r n = c 1 r n −1 + c 2 r n −2 + ⋯ + c k r n − k. Algebraic manipulationyieldsthecharacteristicequation: rk − c 1 r k −1 − c 2 r k −2 − ⋯ − c k −1 r − c k = 0 The sequence {a n } with a n = r n is a solution if and only if r is a solution to the characteristic equation. The solutions to the characteristic equation are called the characteristic roots of the recurrence relation. The roots areusedtogiveanexplicit IJTSRD26662
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26662 | Volume – 3 | Issue – 5 | July - August 2019 Page 1342 formula for all the solutions of the recurrence relation. Solving Linear Homogeneous Recurrence Relations of Degree Two: Theorem 1: Let c 1 and c 2 be real numbers. Suppose that r 2 – c 1 r – c 2 = 0 has two distinct roots r 1 and r 2. Then the sequence {a n } is a solution to the recurrence relation a n = c 1 a n −1 + c 2 a n −2 if and only if for n = 0, 1, 2,…, where α 1 and α 2 are constants. Example: What is the solution to the recurrence relation a n = a n −1 + 2 a n −2 with a 0 = 2 and a 1 = 7 ? Solution: The characteristic equation is r 2 − r − 2 = 0. Its roots are r = 2 and r = −1. Therefore, {a n } is a solution to the recurrence relation if and only if a n = α 1 2 n + α 2 ( −1 ) n, for some constants α 1 and α 2. To find the constants α 1 and α 2, note that a 0 = 2 = α 1 + α 2 and a 1 = 7 = α 1 2 + α 2 ( −1 ). Solving these equations, we find that α 1 = 3 and α 2 = −1. Hence, the solution is the sequence {a n } with a n = 3∙2 n − ( −1 ) n. To find an explicit formula for the Fibonacci numbers: The sequence of Fibonacci numbers satisfies the recurrence relation f n = f n −1 + f n −2 with the initial conditions: f 0 = 0 and f 1 = 1. Solution: The roots of the characteristic equation r 2 – r – 1 = 0. For some constants α 1 and α 2: Using the initial conditions f 0 = 0 and f 1 = 1, we have Solving, we obtain. Theorem 2 : Let c 1 and c 2 be real numbers with c 2 ≠ 0. Suppose that r 2 – c 1 r – c 2 = 0 has one repeated root r 0. Then the sequence {a n } is a solution to the recurrence relation a n = c 1 a n −1 + c 2 a n −2 if and only if for n = 0,1,2,…, where α 1 and α 2 are constants. Example: What is the solution to the recurrence relation a n = 6a n −1 − 9 a n −2 with a 0 = 1 and a 1 = 6? Solution: The characteristic equation is r 2 − 6 r + 9 = 0. The only root is r = 3. Therefore, {a n } is a solution to the recurrence relation if and only if a n = α 1 3 n + α 2 n( 3 ) n where α 1 and α 2 are constants. To find the constants α 1 and α 2, note that a 0 = 1 = α 1 and a 1 = 6 = α 1 ∙ 3 + α 2 ∙3. Solving, we find that α 1 = 1 and α 2 = 1. Hence, a n = 3 n + n 3 n. Solving Linear Homogeneous Recurrence Relations of Arbitrary Degree This theorem can be used to solve linear homogeneous recurrence relations with constant coefficients of any degree when the characteristic equation has distinct roots. Theorem 3 : Let c 1, c 2,…, c k be real numbers. Suppose that the characteristic equation r k – c 1 r k −1 –⋯ – c k = 0 has k distinct roots r 1, r 2, …, r k. Then a sequence {a n } is a solution of the recurrence relation a n =c 1 a n −1 + c 2 a n −2 + ….. + c k a n − k if and only if for n = 0, 1, 2, …, where α 1, α 2,…, α k are constants. 4. Method and Solution Un = C1Un-1+ C2Un-2+ ……..+ Cd Un-d Where C1, C2, ……. , Cd are number and Cd ≠0. Pn = Un+ U' and q n =β U n Pn = (C1 Un-1 +C2 Un-2 + ……. + Cd Un-d) + ( Cn U'n +C2U'n-2 + …..+ Cd U'n-d) = C1 (Un-1 + U'n-1) + C2 (Un-2 + U'n-2 ) +…….+ Cd ( Un-d + U'n-d) = C1 Pn-1 + C2 Pn-2 + …… + Cd P n-d So, P n is a solution of the recurrence. qn = β Un = β ( C1 Un-1 + C2 Un-2 + ….. + Cd Un-d) = C1 (βUn-1) + C2 (β Un-2) + …… + Cd (β Un-d) = C1 qn-1 + C2 qn-2 + …. + Cd q n-d So, q n is a solution of recurrence. Example: What is the solution of recurrence relation. Un = 2 Un-1 +Un-2 – 2 Un-3, U0 =3, U1=6, U2=0 The Characteristic equation is xn- 2 xn-1 - xn-2+ 2xn-3 =0 x3-2x2-x+2 =0 x1=-1, x2=2, x3=1 The general solution is Un= β1x1 n+ β2x2 n+β3x3 n Un= β1(–1)n+ β22n+β31n U0=3 β1+β2+β3=3 U1=6 –β1+2β2+β3=6 U2=0 β1+4β2+β3=0 β1=–2, β2= –1, β3=6 The solution is Un= (–2) (–1)n+(–1)2n+6 5. Conclusion A simple and efficient method for solving linear homogeneous recursive relations has been introduced, which mainly involves synthetic divisions. This method has the advantage that it does not need to use generating function techniques or solve a system of linear equations to determine the unknowncoefficients ofthesolution.A variety of techniques is available for finding explicit formulas for special classes of recursivelydefinedsequences.Themethod explained here works for the Fibonacci and other similarly defined sequences. Reference [1] https://math.stackexchange.com/questions/246221/ what-are-linear-homogeneous-and-non-homoegenous- recurrence-relations [2] https://mathinsight.org/definition/recurrence_relatio n [3] Mircea I. Cîrnu.”Linear recurrence relations with the coefficients in progression”; Annales Mathematicae et Informaticae; 42 (2013) pp. 119–127; https://www.researchgate.net/publication/26042484 9 [4] Yiu-Kwong Man. “Solving Linear Homogeneous Recurrence Relation via the Inverse of Vander monde Matrix”; Proceedings of the International Multi Conference of Engineers andComputerScientists2018 Vol I IMECS 2018, March 14-16, 2018, Hong Kong [5] A. G. Shannon, R. P. Loh,R. S. Melham,A. F. Horadam“A Search for Solutions of a Functional Equation” https://link.springer.com/chapter/10.1007/978-94- 009-0223-7_36 [6] https://www.usna.edu/Users/cs/crabbe/2004- 01/SI262/recur/recur.pdf - -