Is it possible to show mathematically that, for a short portion, sum of two decaying exponential can be approximated by a single decaying exponential? i.e. $Ae^{-ax}+Be^{-bx}\approx Ce^{-cx}$?
2026-03-25 16:38:36.1774456716
Exponential Sum Approximation
1.1k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in EXPONENTIAL-FUNCTION
- How to solve the exponential equation $e^{a+bx}+e^{c+dx}=1$?
- derive the expectation of exponential function $e^{-\left\Vert \mathbf{x} - V\mathbf{x}+\mathbf{a}\right\Vert^2}$ or its upper bound
- How do you calculate the horizontal asymptote for a declining exponential?
- Intersection points of $2^x$ and $x^2$
- Integrate exponential over shifted square root
- Unusual Logarithm Problem
- $f'(x)=af(x) \Rightarrow f(x)=e^{ax} f(0)$
- How long will it take the average person to finish a test with $X$ questions.
- The equation $e^{x^3-x} - 2 = 0$ has solutions...
- Solve for the value of k for $(1+\frac{e^k}{e^k+1})^n$
Related Questions in EXPONENTIAL-SUM
- Proof of homomorphism property of the exponential function for formal power series
- The cdf of a sum of two independent random variables with type I extreme-value distribution
- Is there a scheme by which we can form distinct sums of sums.
- solving for a set number of "accelerating" values between two given values
- Solving $5000 = 2000(1 + (0.0225/12))^{12t} + 2000(1 + (0.03/12))^{12t}$
- How to show $\frac 1 e \sum\limits_{n=0}^{+\infty}\frac{n^x}{n!}$ is always an integer for $x \in \mathbb N$
- Exponential function inequality with n terms
- How can one show that this is positive?
- Solution of $2^x+3^x=1$
- Prove that exponential series squared is continous
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?
Assuming that the two exponents $(a,b)$ are not "too different", what you could do, for the range $\alpha \leq x \leq \beta$, is to minimize $$\Phi(C,c)=\int_\alpha^\beta \Big[C e^{-c x}-A e^{-a x}-B e^{-b x} \Big]^2\, dx$$ which is equivalent to an exponential regression based on an infinite number of data points.
The antiderivative is $$-\frac{A^2 e^{-2 a x}}{a}-\frac{4 A B e^{-(a+b)x}}{a+b}+\frac{4 A C e^{ -(a+c)x}}{a+c}-\frac{B^2 e^{-2 b x}}{b}+\frac{4 B C e^{ -(b+c)x}}{b+c}-\frac{C^2 e^{-2 c x}}{c}$$
Apply the bounds to get $\Phi(C,c)$, compute the partial derivatives and set them equal to $0$. $$\frac{\partial \Phi(C,c)}{\partial C}=0 \implies C=f(c)\qquad \text{(which is an explicit function)}$$ and you are left with $$\frac{\partial \Phi(C,c)}{\partial c}=\frac{\partial \Phi(f(c),c)}{\partial c}=0$$ which will require some numerical method (a quite nasty nonlinear equation in $c$ but not difficult to solve using Newton method with $c_0=\frac{a+b}2$).
Probably, generating data points and using nonlinear regression could be easier since the exponential fitting is quite trivial. Generate $n$ data points $(x_i,y_i)$ with $y_i=A e^{-a x_i}+B e^{-b x_i}$ to face the model $$y=C e^{-c x}$$ In a first step, take logarithms and a linear regression will give estimates of $\log(C)$ and $c$ which will be good starting values for the nonlinear regression.
For illustration, I used $A=123$, $a=0.8$, $B=234$, $b=1.1$, $\alpha=3$, $beta=5$ and generated $100$ data points. The nonlinear regression gives $(R^2 > 0.9999)$ $$\begin{array}{clclclclc} \text{} & \text{Estimate} & \text{Standard Error} & \text{Confidence Interval} \\ A & 306.804 & 0.60903 & \{305.596,308.013\} \\ a & 0.91475 & 0.00057 & \{0.91363,0.91587\} \\ \end{array}$$ showing a maximum absolute error of $0.06$ while the sum of the two exponentials vary between $20$ and $3$.