SlideShare a Scribd company logo
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: Matrices
allyn joy calcaben
 
Discrete maths tutorials
Discrete maths tutorialsDiscrete maths tutorials
Discrete maths tutorials
DIT University
 
.
..
Discrete maths questions
Discrete maths questionsDiscrete maths questions
Discrete maths questions
DIT University
 
Recurrence Relation
Recurrence RelationRecurrence Relation
Recurrence Relation
Papu Kumar
 
Inmo 2010 problems and solutions
Inmo 2010 problems and solutionsInmo 2010 problems and solutions
Inmo 2010 problems and solutions
askiitians
 
Maths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectorsMaths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectors
Jaydev Kishnani
 
recurence solutions
recurence solutionsrecurence solutions
recurence solutions
soumya8396
 
Roots and Radicals
Roots and RadicalsRoots and Radicals
Roots and Radicals
Ver Louie Gautani
 
Chap 1 real number
Chap 1 real numberChap 1 real number
Chap 1 real number
JNV
 
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
allyn joy calcaben
 
Chapter 5 Polynomials
Chapter 5 PolynomialsChapter 5 Polynomials
Chapter 5 Polynomials
Reema
 
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
Lawrence De Vera
 
Rational Exponents
Rational ExponentsRational Exponents
Rational Exponents
Phil Saraspe
 
IITJEE Mathematics 2007
IITJEE Mathematics   2007IITJEE Mathematics   2007
IITJEE Mathematics 2007
Vasista Vinuthan
 
5.3 geometric sequences and sums
5.3 geometric sequences and sums5.3 geometric sequences and sums
5.3 geometric sequences and sums
math260
 
IIT JEE - 2008 ii- mathematics
IIT JEE  - 2008  ii- mathematicsIIT JEE  - 2008  ii- mathematics
IIT JEE - 2008 ii- mathematics
Vasista Vinuthan
 
Assignments for class XII
Assignments for class XIIAssignments for class XII
Assignments for class XII
indu thakur
 
Eigen values and eigenvectors
Eigen values and eigenvectorsEigen values and eigenvectors
Eigen values and eigenvectors
Amit Singh
 
Class 11 maths support material
Class 11 maths support materialClass 11 maths support material
Class 11 maths support material
nitishguptamaps
 

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.ppt
MumitAhmed1
 
Recurrence Relations for Discrete mathematics
Recurrence Relations for Discrete mathematicsRecurrence Relations for Discrete mathematics
Recurrence Relations for Discrete mathematics
meychu1
 
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
pranjaltarte
 
Recurrence_Theory.pptx studdents nees free
Recurrence_Theory.pptx studdents nees freeRecurrence_Theory.pptx studdents nees free
Recurrence_Theory.pptx studdents nees free
White44420
 
LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS
 LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS
LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS
AartiMajumdar1
 
Maths
MathsMaths
Solving recurrences
Solving recurrencesSolving recurrences
Solving recurrences
Waqas Akram
 
Vectors2
Vectors2Vectors2
Ch07 6
Ch07 6Ch07 6
Ch07 6
Rendy Robert
 
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
RishikeshJha33
 
Recurrence equations
Recurrence equationsRecurrence equations
Recurrence equations
Tarun Gehlot
 
01_AJMS_317_21.pdf
01_AJMS_317_21.pdf01_AJMS_317_21.pdf
01_AJMS_317_21.pdf
BRNSS Publication Hub
 
Analysis Of Algorithms Ii
Analysis Of Algorithms IiAnalysis Of Algorithms Ii
Analysis Of Algorithms Ii
Sri Prasanna
 
Solving linear homogeneous recurrence relations
Solving linear homogeneous recurrence relationsSolving linear homogeneous recurrence relations
Solving linear homogeneous recurrence relations
Dr. Maamoun Ahmed
 
Sequence and Series
Sequence and SeriesSequence and Series
Aieee maths-quick review
Aieee maths-quick reviewAieee maths-quick review
Aieee maths-quick review
Sharath Kumar
 
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
alproelearning
 
sequence and series.docx
sequence and series.docxsequence and series.docx
sequence and series.docx
Getachew Mulaw
 
Formular
FormularFormular
Formular
Bunga Noionla
 

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

RecurrenceRelations.ppt
RecurrenceRelations.pptRecurrenceRelations.ppt
RecurrenceRelations.ppt
 
Recurrence Relations for Discrete mathematics
Recurrence Relations for Discrete mathematicsRecurrence Relations for Discrete mathematics
Recurrence Relations for Discrete mathematics
 
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
 

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 Implementation
ijtsrd
 
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 Prospects
ijtsrd
 
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 Study
ijtsrd
 
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. Sadiku
ijtsrd
 
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 Map
ijtsrd
 
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
ijtsrd
 
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 Learning
ijtsrd
 

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

How to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in useHow to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in use
Celine George
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
Nguyen Thanh Tu Collection
 
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
EduSkills OECD
 
Skimbleshanks-The-Railway-Cat by T S Eliot
Skimbleshanks-The-Railway-Cat by T S EliotSkimbleshanks-The-Railway-Cat by T S Eliot
Skimbleshanks-The-Railway-Cat by T S Eliot
nitinpv4ai
 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
deepaannamalai16
 
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdfREASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
giancarloi8888
 
A Free 200-Page eBook ~ Brain and Mind Exercise.pptx
A Free 200-Page eBook ~ Brain and Mind Exercise.pptxA Free 200-Page eBook ~ Brain and Mind Exercise.pptx
A Free 200-Page eBook ~ Brain and Mind Exercise.pptx
OH TEIK BIN
 
NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...
NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...
NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...
Payaamvohra1
 
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
National Information Standards Organization (NISO)
 
CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...
Nguyen Thanh Tu Collection
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
TechSoup
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
Nguyen Thanh Tu Collection
 
Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10
nitinpv4ai
 
How Barcodes Can Be Leveraged Within Odoo 17
How Barcodes Can Be Leveraged Within Odoo 17How Barcodes Can Be Leveraged Within Odoo 17
How Barcodes Can Be Leveraged Within Odoo 17
Celine George
 
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptxRESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
zuzanka
 
CIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdfCIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdf
blueshagoo1
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
Krassimira Luka
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
iammrhaywood
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
siemaillard
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
National Information Standards Organization (NISO)
 

Recently uploaded (20)

How to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in useHow to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in use
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
 
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
 
Skimbleshanks-The-Railway-Cat by T S Eliot
Skimbleshanks-The-Railway-Cat by T S EliotSkimbleshanks-The-Railway-Cat by T S Eliot
Skimbleshanks-The-Railway-Cat by T S Eliot
 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
 
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdfREASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
 
A Free 200-Page eBook ~ Brain and Mind Exercise.pptx
A Free 200-Page eBook ~ Brain and Mind Exercise.pptxA Free 200-Page eBook ~ Brain and Mind Exercise.pptx
A Free 200-Page eBook ~ Brain and Mind Exercise.pptx
 
NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...
NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...
NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...
 
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
 
CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
 
Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10
 
How Barcodes Can Be Leveraged Within Odoo 17
How Barcodes Can Be Leveraged Within Odoo 17How Barcodes Can Be Leveraged Within Odoo 17
How Barcodes Can Be Leveraged Within Odoo 17
 
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptxRESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
 
CIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdfCIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdf
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
 

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 - -