Questions tagged [reduction-of-order-ode]

To use when our aim is to solve an ODE (of any order) only with reduction of order method. If you just want to solve an ODE use the tag differential-equations.

If the ODE is second order we have the general form $y''+p(x)y'+q(x)y = 0$ and we use reduction of order when we are given (or we can guess) a solution $y_1$. Then we suppose $y_2$ depends on $y_1$ by the following : $y_2 = v(x)y_1$. Then we differentiate this expression and substitute in. We will use $z'=v$ to reduce the order afterwards.

57 questions
1
vote
1 answer

Find initial expression that a reduction process with 2 rules does not terminate

Imagine a language of finite sequences of 0 and 1. The rules for simplifying strings in this language are given by: l??x => x1101 0??x => x00 In these rules, the variable x denotes an arbitrary sequence of 0s and Is and the sign '?' denotes a…