Consider this boundary value problem $$\epsilon u''+uu'-u=0,\quad u(0)=A\in\mathbb{R},\quad u(1)=3.$$ This differential equation is known as Lagerstrom-Cole equation. I trying to construct asymptotic approximation of this BVP using matched asymptotic expansion. Numerical solution suggests that there is boundary layer near $x=0$. Using naive expansion I obtained the outer solution $$u_0(x)=x+2.$$ This outer solution is consistent with the numerical solution. For the inner region I introduced $\hat{x}=x/\epsilon$ and $$u(\hat{x})\approx u_0(\hat{x})+\epsilon u_1(\hat{x})+\epsilon^2u_2(\hat{x})+\dots$$ Substituting above expansion into differential equation I ended up to $$u_0''+u_0u_0'=0.$$ The general solution for this differential equation is $$u_0(\hat{x})=\sqrt{2C_1}\tanh{\left[(\hat{x}+C_2)\sqrt{C_1/2}\right]}.$$ Unfortunately this function cannot satisfy the left boundary condition. At this point I'm stuck.
2026-03-28 02:42:43.1774665763
Lagerstrom-Cole equation
340 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/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 PERTURBATION-THEORY
- Is there a book on the purely mathematical version of perturbation theory?
- Limit of a function ("order of magnitude")
- Unusual normalization related to the eigenvector perturbation
- How to expand $\sqrt{x+\epsilon}$ in the following way?
- Perturbative expansion of an expression involving the matrix square root
- Question on perturbation theory
- How to find roots by perturbation methods for this problem?
- Find perturbed eigenvalues, eigenvectors by perturbation methods
- rationalize denominator for perturbation theory
- Solve recurrent ODE (elegantly?)
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?



Your leading order outer solution is $$ u_{0,outer}(x)=x+2, $$ and your leading order inner solution can be written as $$ u_{0,inner}(\hat x)=C\tanh\left(\frac{C\hat x+D}{2}\right). $$ Using the boundary condition at $\hat x=0$ gives $$A=C\tanh\left(D/2\right),$$ or, $C=A/\tanh(D/2)$. So, we can write $$ u_{0,inner}(\hat x)=A\frac{\tanh\left(\frac{A\hat x}{2\tanh\left(\frac{D}{2}\right)}+\frac{D}{2}\right)}{\tanh\left(\frac{D}{2}\right)}. $$ Now, to perform the asymptotic matching to find $D$, you have to match the limit as you leave the boundary of the inner solution to the limit of the outer solution as you enter the boundary layer, or, $$ \lim_{x\rightarrow0}u_{0,outer}(x)=\lim_{\hat x\rightarrow\infty}u_{0,inner}(\hat x).$$ Taking both limits gives $$2=\frac{A}{\tanh\left(\frac{D}{2}\right)},$$ and so $D=2\tanh^{-1}(A/2)$.
Substituting back into the inner solution gives $$u_{0,inner}(\hat x)=2\tanh\left(\hat x+\tanh^{-1}\left(\frac{A}{2}\right)\right).$$
To get a uniformly valid approximation throughout the whole domain, do $$ u_{0,unif}(x)=u_{0,outer}(x)+u_{0,inner}(x/\epsilon)-u_{0,outer}(0)=x+2\tanh\left(\frac{x}{\epsilon}+\tanh^{-1}\left(\frac{A}{2}\right)\right). $$
Some Matlab code can be used to check the results, for $\epsilon=0.1$ and $A=3$, for example,
And the Matlab code: