I'm having a hard time understanding how to find the particular solution for a recurrence relation. I have a particular part of the relation as (2n + 3 +4*3^n). I have already determined the homogenous equation, so for this, do I need to break the particular solution into two parts, F1=2n+3 and F2=4*3^n ? I saw examples that I thought mirrored what I need to do that did this, but then got confused. I have to write the particular solution to this recurrence relation, and a general solution to the recurrence relation, which I assume will just be the general solution I already found with the associated homogenous rr and what I find for the particular solution. Can anyone help?
2026-04-08 17:46:24.1775670384
particular solution of recurrence relation help
187 Views Asked by user783682 https://math.techqa.club/user/user783682/detail At
1
There are 1 best solutions below
Related Questions in ASYMPTOTICS
- Justify an approximation of $\sum_{n=1}^\infty G_n/\binom{\frac{n}{2}+\frac{1}{2}}{\frac{n}{2}}$, where $G_n$ denotes the Gregory coefficients
- How to find the asymptotic behaviour of $(y'')^2=y'+y$ as $x$ tends to $\infty$?
- Correct way to prove Big O statement
- Proving big theta notation?
- Asymptotics for partial sum of product of binomial coefficients
- Little oh notation
- Recurrence Relation for Towers of Hanoi
- proving sigma = BigTheta (BigΘ)
- What's wrong with the boundary condition of this $1$st order ODE?
- Every linearly-ordered real-parametrized family of asymptotic classes is nowhere dense?
Related Questions in RECURRENCE-RELATIONS
- Recurrence Relation for Towers of Hanoi
- Solve recurrence equation: $a_{n}=(n-1)(a_{n-1}+a_{n-2})$
- General way to solve linear recursive questions
- Approximate x+1 without addition and logarithms
- Recurrence relation of the series
- first order inhomogeneous linear difference equation general solution
- Guess formula for sequence in FriCAS
- Solve the following recurrence relation: $a_{n}=10a_{n-2}$
- Find closed form for $a_n=2\frac{n-1}{n}a_{n-1}-2\frac{n-2}{n}a_{n-2}$ for all $n \ge 3$
- Young Tableaux generating function
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
In most textbooks this is not well-explained, simply because it is a hassle to write this all out in a general manner.
To answer your question directly; yes, split the particular solution in two parts, solve them independently and then add the two solutions.
Here's why. Since you don't provide the recurrence relation itself (and it's not important for your question) I'll pretend your recurrence relation is $$y_n-3y_{n-1}=2n+3+4\cdot 3^n.$$
Suppose you find:
A solution $h_n$ for the homogeneous recurrence relation $y_n-3y_{n-1}=0$
A solution $f_n$ for the recurrence relation $y_n-3y_{n-1}=2n+3$
A solution $g_n$ for the recurrence relation $y_n-3y_{n-1}=4\cdot 3^n$
Then define $y_n=h_n+f_n+g_n$ and observe that $$y_n-3y_{n-1} = h_n+f_n+g_n -3h_{n-1} -3f_{n-1}-3g_{n-1},$$ which after reordering becomes $$(h_n-3h_{n-1})+(f_n-3f){n-1})+(g_n-3g_{n-1})=0 + 2n+3+ 4\cdot 3^n,$$ which means that $y_n$ is a solution for your complete non-homogeneous recurrence relation.
If you understand the above, note that the only thing that we used from the specific equation that I took was that it is linear; the same 'trick' works for any other linear recurrence relation and hence (I assume) also for yours.