Skip to main content

How to Find a Second Linearly Independent Solution for a Repeated Root in a Cauchy-Euler Equation

Have you ever come across a second-order differential equation that looks like this?

x²y″ − 3xy′ + 4y = 0

This is what's called a Cauchy-Euler equation (also known as an equidimensional equation). These are special because they match the pattern:

x²y″ + axy′ + by = 0

and we can solve them with a neat trick—try solutions of the form y = xʳ. But what happens when that method gives us a repeated root? Let's walk through it together!


Step 1: Assume a Power Function

Suppose we guess a solution:

y = xʳ

Then its derivatives are:

  • y′ = r·xr−1
  • y″ = r(r−1)·xr−2

Plug these into the equation:

x²y″ − 3xy′ + 4y = x²·r(r−1)xr−2 − 3x·r xr−1 + 4 xr

Simplify:

xʳ [r(r−1) − 3r + 4] = 0

This gives the characteristic equation:

r² − 4r + 4 = 0 → (r − 2)² = 0

We have a repeated root! r = 2


Wait... Isn't That Only One Solution?

Yes! The solution we get is:

y₁(x) = x²

But second-order differential equations need two linearly independent solutions to form the general solution.

When there's a repeated root, the second solution includes a logarithmic term:

y₂(x) = x² ln(x)

Where did that come from? Let’s find out.


Step 2: Use Reduction of Order

Suppose the second solution looks like:

y₂(x) = v(x) · x²

Differentiate:

  • y₂′ = v′·x² + 2v·x
  • y₂″ = v″·x² + 4v′·x + 2v

Now plug into the original differential equation:

x²y₂″ − 3x y₂′ + 4y₂

After substitution and simplification, the equation becomes:

v″·x⁴ + v′·x³ = 0

Divide by (assuming x ≠ 0):

v″·x + v′ = 0

Step 3: Solve the Simpler Equation

This is now a first-order linear ODE in v′:

Let u = v′ ⇒ x du/dx + u = 0

Separate variables and integrate:

∫du/u = −∫dx/x ⇒ ln|u| = −ln|x| + C ⇒ u = C/x

Then:

v′ = C/x ⇒ v = C ln x + D

Step 4: Get the Final Answer

Now plug back:

y₂(x) = v(x) · x² = (C ln x + D) x²

So the two solutions are:

  • y₁(x) = x²
  • y₂(x) = x² ln x

The general solution is:

y(x) = C₁ x² + C₂ x² ln x

Final Thoughts

The Cauchy-Euler equation is one of those beautiful intersections of algebra and calculus. It teaches us that sometimes, when two solutions look the same, we need to dig deeper—literally into a logarithm—to find a new direction.

Now you’re ready to handle repeated roots like a pro.


Review Summary

  • Try y = xʳ — works when roots are real and distinct.
  • If you get a repeated root, the second solution involves a logarithmic term.
  • Use reduction of order to find it: set y₂ = v(x) xʳ and solve.
  • Final form: y₂ = xʳ ln x

Happy mathing!

Comments

Popular posts from this blog

What is Mathematical Fluency?

What does it really mean for students to be mathematically fluent? If you’ve been in any math PD over the past few years, you’ve likely heard the phrase everywhere. We talk about fluency as something students should develop, strengthen, and demonstrate, but it can still feel abstract when we try to describe it in observable, classroom-ready terms. This post breaks down mathematical fluency into the two simplest frames we can use as teachers: what it looks like and what it sounds like . These descriptions can guide instruction, assessment, student goal-setting, and even walkthrough conversations with colleagues or administrators. What Mathematical Fluency Looks Like In a classroom where students are developing mathematical fluency, you see students making choices about strategies rather than following steps robotically. They use representations—number lines, diagrams, tables, graphs, manipulatives, symbolic expressions—and switch between them to make sense of a problem. They move ...

The Tribe of Math Mentors: 11 Questions Every Educator Should Answer

It is easy to get caught up in the vague, existential questions of education: How do I become a better teacher? How do I make math engaging? How do I survive the burnout? But as author Tim Ferriss noted when writing his book Tribe of Mentors, "Life punishes the vague wish and rewards the specific ask." When Ferriss set out to deconstruct the habits of world-class performers, he didn’t ask them broad questions about "the secret to success." He engineered 11 highly specific questions designed to bypass rehearsed answers and force his subjects to share actionable, vulnerable, and unconventional insights. Recently, I started thinking about how perfectly this methodology translates to our world. What if we asked these exact types of questions to master math teachers? What if we used them to guide the next generation of educators? Here is my best thinking of what Ferriss’s Tribe of Mentors questionnaire looks like when translated into the context of the mathematics classr...

Beyond Taylor Series: The Magic and History of Padé Approximations

If you have ever taken a calculus class, you probably remember the Taylor series. It is the mathematical magic trick that lets you turn complicated functions—like sines, cosines, and exponentials—into simple, infinitely long polynomials. For centuries, it has been a cornerstone of numerical mathematics. But the Taylor series has a dark secret: it frequently breaks. If a function has a vertical asymptote (a pole) or if you move too far from your starting point, the Taylor series spirals out of control into infinity. It is strictly bounded by what mathematicians call a "radius of convergence." Enter the Padé approximation . Instead of using a single polynomial to estimate a function, a Padé approximant uses a fraction (a ratio of two polynomials). This simple structural change unlocks a profound level of mathematical power, allowing us to see past the limits of Taylor series and model complex, chaotic systems in modern physics and engineering. A Brief History: From Franc...