I was wondering what the closed form for a function $f(x)$ is when $f(x)=a*f(x-1)+b^\left(x-1\right)-c^\left(x+1\right)$, and $f(0) = d$ is given. Assume $a$, $b$, $c$, and $d$ are all greater than 1. It seems to be an exponential term based off of $a$, which makes sense, but I don't know how to make a closed form for the exact value.
2026-03-26 09:36:51.1774517811
Closed form for an exponential recurrence
53 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in CLOSED-FORM
- How can I sum the series $e^{-2}\frac{(3)^n}{n!}\sum_{k=0}^{\infty}\left ( \frac{1}{2}\right )^k\frac{1}{(k-n)!}$
- Computing $\int_0^\pi \frac{dx}{1+a^2\cos^2(x)}$
- Can one solve $ \int_{0}^\infty\frac{\sin(xb)}{x^2+a^2}dx $ using contour integration?
- Finding a closed form for a simple product
- For what value(s) of $a$ does the inequality $\prod_{i=0}^{a}(n-i) \geq a^{a+1}$ hold?
- Convergence of $\ln\frac{x}{\ln\frac{x}{\ln x...}}$
- How can one show that $\int_{0}^{1}{x\ln{x}\ln(1-x^2)\over \sqrt{1-x^2}}\mathrm dx=4-{\pi^2\over 4}-\ln{4}?$
- Exercises about closed form formula of recursive sequence.
- Simplify and determine a closed form for a nested summation
- Direction in closed form of recurrence relation
Related Questions in RECURSION
- Solving discrete recursion equations with min in the equation
- Recognizing recursion relation of series that is solutions of $y'' + y' + x^2 y = 0$ around $x_0 = 0$.
- Ackermann Function for $(2,n)$
- Primitive recursive functions of bounded sum
- Ackermann Function for $f(2,n)$ as compared to $f(5,1)$
- Determinant of Block Tridiagonal Matrix
- In how many ways can the basketball be passed between four people so that the ball comes back to $A$ after seven passes? (Use recursion)
- Finding a recursive relation from a differential equation.
- A recursive divisor function
- Are these numbers different from each other?
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?
$f(x)=a*f(x-1)+b^\left(x-1\right)-c^\left(x+1\right)$, and $f(0) = d$
The initial point of the recurrence is given only for $x=0$. But $f(x)$ is not given for $0<x<1$. This is not sufficient to determine $f(x)$ for non-integer $x$.
Since the wording of the problem is incomplete, the answer is impossible in generality. We can only answer to the question restricted to $x=n=$integer. $$f(n)=a\:f(n-1)+b^{n-1}-c^{n+1}\quad;\quad f(0) = d$$ $$af(n-1)=a\left(a\:f(n-2)+b^{n-2}-c^{n}\right)$$ $$…$$ $$a^kf(n-k)=a^k\left(a\:f(n-k-1)+b^{n-k-1}-c^{n-k+1}\right)$$ $$…$$ $$a^{n-2}f(2)=a^{n-2}\left(a\:f(1)+b^{1}-c^{3}\right)$$ $$a^{n-1}f(1)=a^{n-1}\left(a\:f(0)+b^{0}-c^{2}\right)$$ Summing all leads to : $$f(n)=a^nf(0)+\sum_{k=0}^{n-1} a^kb^{n-k-1} -\sum_{k=0}^{n-1} a^kc^{n-k+1}$$ $\sum_{k=0}^{n-1} a^kb^{n-k-1}=b^{n-1}\sum_{k=0}^{n-1} (\frac{a}{b})^k = b^{n-1}\frac{1-(\frac{a}{b})^n}{1-\frac{a}{b}}=\frac{b^n-a^n}{b-a}\quad$ : geometric series.
$\sum_{k=0}^{n-1} a^kc^{n-k+1}=c^2\frac{c^n-a^n}{c-a}$ $$f(n)=a^nd+\frac{b^n-a^n}{b-a}-c^2\frac{c^n-a^n}{c-a}$$