y_{n+1}=y_n+\frac{h}{6}(k_1+2k_2+2k_3+k_4)Variables
- h: step size
- k1…k4: staged slope estimates
- y_n: current approximation
How to use this formula
Combines four slope estimates to produce a fourth-order ODE step.
Important notes
- The displayed formula assumes the standard RK4 stage definitions.
- Adaptive methods estimate error and vary h.
Quick example
RK4 is commonly used when a robust fixed-step solver is sufficient.
Applicability, worked calculation, and verification
Assumptions and domain checks
- The displayed formula assumes the standard RK4 stage definitions.
- For the Classical Runge–Kutta Method, every denominator must be nonzero, and the numerator and denominator must remain correctly grouped.
- The iteration, step size, tolerance, and stopping rule must be suitable for the problem and the method must converge in the chosen region.
Worked example
RK4 is commonly used when a robust fixed-step solver is sufficient.
Common mistakes
- When copying Classical Runge–Kutta Method, keep the complete numerator and denominator grouped; a missing brace or parenthesis changes the result.
- Do not report a numerical approximation without a tolerance, convergence check, and an estimate of rounding or truncation error.
Continue the workflow
Use Classical Runge–Kutta Method in your own work
- Check the domainMatch the variables and assumptions to the problem before substituting values.
- Copy the exact notationPreserve grouping, signs, and exponents in
y_{n+1}=y_n+\frac{h}{6}(k_1+2k_2+2k_3+k_4). - Edit or convertOpen the expression in the LaTeX editor, then export it for your document or web page.
Review and verification
Last reviewed: 2026-07-23
Automated quality check: Kept noindex until the missing evidence is supplied.
Formula references
- Digital Library of Mathematical FunctionsNational Institute of Standards and Technology — Definitions, notation, identities, and reference material for mathematical functions.
Frequently asked questions
What is the Classical Runge–Kutta Method used for?
Combines four slope estimates to produce a fourth-order ODE step.
Can I copy this formula as LaTeX?
Yes. Copy y_{n+1}=y_n+\frac{h}{6}(k_1+2k_2+2k_3+k_4) or open it in the LaTeX editor.
What should I check before using it?
Confirm that each variable, unit, domain restriction, and assumption matches the problem.