- Aug 21, 2005
- 3,691
- 68
- 91
y'' = C1 - C2 * (y')^2
C1, C2 are constants
y is the dependent variable
let x be in independent variable
This is an IVP with y(0) and y'(0) known
This is not directly a homework problem. This DE is used in a much larger computer program. Currently it's being solved numericaly with an RK4 routine. This program is called by an optimizer several hundred times, so it'd be nice to cut down on running the RK routine every time and also not have to worry about step size (currently using constant step size).
C1, C2 are constants
y is the dependent variable
let x be in independent variable
This is an IVP with y(0) and y'(0) known
This is not directly a homework problem. This DE is used in a much larger computer program. Currently it's being solved numericaly with an RK4 routine. This program is called by an optimizer several hundred times, so it'd be nice to cut down on running the RK routine every time and also not have to worry about step size (currently using constant step size).