Split View: 공업수학 시리즈 8편: 급수해와 ordinary point
공업수학 시리즈 8편: 급수해와 ordinary point
공업수학 시리즈 8편: 급수해와 ordinary point
지금까지는 특성방정식이나 표준 공식을 이용해 비교적 예쁘게 풀리는 문제를 봤습니다. 하지만 실제로는 그런 문제만 나오지 않습니다. 이때 등장하는 중요한 아이디어가 해를 멱급수로 가정하는 방법입니다.
왜 급수해가 필요한가
어떤 미분방정식은 초등함수로 깔끔하게 표현되는 해가 없습니다. 그렇다고 해를 포기하는 것은 아닙니다. 대신 해를
처럼 무한급수로 가정하고 계수들을 찾아갈 수 있습니다.
이 방식은 이후 베셀 함수, 르장드르 함수 같은 특수함수로 연결되는 출발점입니다.
ordinary point란 무엇인가
2차 선형 방정식을
형태로 썼을 때, 전개하려는 점 근처에서 와 가 해석적이면 그 점을 ordinary point라고 생각할 수 있습니다. 입문 단계에서는 "그 점 근처에서 계수 함수가 충분히 매끈하고, 최고차 미분항의 계수가 0이 아니어서 안전하게 전개할 수 있는 점" 정도로 이해해도 좋습니다.
기본 절차
멱급수 해법의 흐름은 보통 다음과 같습니다.
- 해를 으로 가정한다
- 미분해서 , 도 급수로 쓴다
- 원래 식에 대입한다
- 같은 차수의 항끼리 모은다
- 계수 비교로 점화식을 얻는다
즉 계산의 핵심은 "무한급수를 미분방정식 안으로 밀어 넣은 뒤 계수를 비교하는 것"입니다.
손으로 보는 예제
다음 식을 보겠습니다.
해를
로 두면
가 됩니다. 따라서
이고, 각 차수의 계수는 모두 0이어야 하므로
를 얻습니다.
이 점화식은 짝수 계수와 홀수 계수가 각각 따로 결정된다는 뜻이고, 실제로 전개하면 코사인과 사인 급수가 나옵니다.
이 방법이 주는 의미
이 예제는 이미 해를 알고 있는 방정식이지만, 급수해가 어떻게 작동하는지 보기에 좋습니다. 중요한 것은 "해를 함수 한 방에 맞히지 못해도, 계수를 순서대로 만들어 갈 수 있다"는 점입니다.
공학 응용
특수함수의 출발점
원통 좌표나 구면 좌표 문제를 풀다 보면 베셀 함수, 르장드르 함수가 등장합니다. 이 함수들은 상당수가 급수해로부터 정의되거나 이해됩니다.
근사 계산
어떤 점 근처에서 해를 빠르게 근사해야 할 때 멱급수는 매우 유용합니다.
알고리즘 구현
개발자 관점에서는 점화식이 곧 알고리즘입니다. 계수 생성 규칙을 코드로 옮기면 수치 계산 라이브러리의 한 조각이 됩니다.
자주 하는 실수
지수 인덱스를 정리하지 않는다
급수해는 인덱스 이동을 깔끔하게 하지 않으면 금방 혼란스러워집니다. , , 를 정확히 맞추는 습관이 중요합니다.
ordinary point 개념을 너무 무겁게 생각한다
입문 단계에서는 "전개하려는 점 근처에서 계수들이 멀쩡한가"를 확인하는 정도로 시작해도 충분합니다.
점화식까지만 쓰고 의미를 놓친다
점화식은 단순한 계산 장치가 아니라, 해의 계수 구조와 자유도 개수를 보여주는 정보입니다.
한 줄 요약
급수해는 닫힌형 해를 바로 찾기 어려운 미분방정식에서 해를 계수의 규칙으로 복원하는 강력한 방법입니다.
다음 편 예고
다음 글에서는 ODE 파트를 잠시 정리하면서, 문제를 적분 문제로 바꿔 주는 강력한 도구인 라플라스 변환으로 넘어가겠습니다.
참고자료
- Erwin Kreyszig, Advanced Engineering Mathematics, 10th Edition
- George B. Arfken, Mathematical Methods for Physicists
- James Ward Brown, Ruel V. Churchill, Complex Variables and Applications
Engineering Math Series 8: Series Solutions and Ordinary Points
Engineering Math Series 8: Series Solutions and Ordinary Points
So far we have seen problems that solve relatively neatly using characteristic equations or standard formulas. But in practice, not all problems work that way. The important idea that emerges here is assuming the solution as a power series.
Why Are Series Solutions Needed
Some differential equations have no solution that can be expressed neatly as elementary functions. But that does not mean we give up on finding a solution. Instead, we can assume the solution as
an infinite series, and find the coefficients.
This approach is the starting point that later connects to special functions like Bessel functions and Legendre functions.
What Is an Ordinary Point
When a second-order linear equation is written as
if and are analytic near the point where you want to expand, that point can be considered an ordinary point. At the introductory level, understanding it as "a point near which the coefficient functions are sufficiently smooth and the coefficient of the highest derivative is not zero, so you can safely expand" is adequate.
Basic Procedure
The flow of the power series method is usually as follows.
- Assume the solution as
- Differentiate to write and as series too
- Substitute into the original equation
- Collect terms of the same power
- Obtain a recurrence relation by comparing coefficients
The core of the computation is "pushing the infinite series into the differential equation and comparing coefficients."
Worked Example
Consider the following equation.
Assuming the solution as
then
Therefore
and since each coefficient must be zero,
This recurrence relation means that the even and odd coefficients are determined separately, and expanding them actually produces the cosine and sine series.
What This Method Gives Us
This example is for an equation whose solution we already know, but it is good for seeing how series solutions work. The important thing is that "even if you cannot find the solution as a single function, you can build the coefficients one by one in order."
Engineering Applications
Starting Point for Special Functions
When solving problems in cylindrical or spherical coordinates, Bessel functions and Legendre functions appear. Many of these functions are defined or understood through series solutions.
Approximate Calculations
When you need to quickly approximate a solution near a certain point, power series are very useful.
Algorithm Implementation
From a developer's perspective, the recurrence relation is essentially an algorithm. Translating the coefficient generation rule into code becomes a piece of a numerical computation library.
Common Mistakes
Not organizing the index shifts
Series solutions quickly become confusing if you do not handle index shifts cleanly. The habit of accurately matching , , and is important.
Overthinking the ordinary point concept
At the introductory level, starting with "are the coefficients well-behaved near the point I want to expand around" is sufficient.
Writing the recurrence relation but missing its meaning
The recurrence relation is not just a computational device but information that reveals the coefficient structure and degrees of freedom of the solution.
One-Line Summary
Series solutions are a powerful method for recovering solutions as rules about coefficients in differential equations where closed-form solutions are not readily available.
Next Post Preview
In the next post, we will take a brief pause from the ODE section and move to the Laplace transform, a powerful tool that converts problems into algebraic ones.
References
- Erwin Kreyszig, Advanced Engineering Mathematics, 10th Edition
- George B. Arfken, Mathematical Methods for Physicists
- James Ward Brown, Ruel V. Churchill, Complex Variables and Applications