https://github.com/mkierzenka/Racket_NumericalMethods
A collection of Numerical Methods implemented in Racket. Includes Root Finders, ODE Solvers, Linear System Solvers, etc. as well as Applications/Demos.
https://github.com/mkierzenka/Racket_NumericalMethods
3bodyproblem continued-fractions differential-equations linear-system-solver methods newtons-method numerical numerical-integration ode ode-solver pi racket racket-numericalmethods runge-kutta runge-kutta-4 runge-kutta-adaptive-step-size runge-kutta-methods
Last synced: 16 days ago
JSON representation
A collection of Numerical Methods implemented in Racket. Includes Root Finders, ODE Solvers, Linear System Solvers, etc. as well as Applications/Demos.
- Host: GitHub
- URL: https://github.com/mkierzenka/Racket_NumericalMethods
- Owner: mkierzenka
- License: mit
- Created: 2017-12-27T23:55:02.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-10T04:26:02.000Z (almost 8 years ago)
- Last Synced: 2024-05-08T00:37:15.878Z (over 1 year ago)
- Topics: 3bodyproblem, continued-fractions, differential-equations, linear-system-solver, methods, newtons-method, numerical, numerical-integration, ode, ode-solver, pi, racket, racket-numericalmethods, runge-kutta, runge-kutta-4, runge-kutta-adaptive-step-size, runge-kutta-methods
- Language: Racket
- Size: 52.7 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- racket-fingerpost - Racket_NumericalMethods - - Collection of numerical methods (Packages)
README
# Racket_NumericalMethods
A collection of Numerical Methods implemented in Racket. Includes Root Finders, ODE Solvers, Linear System Solvers, Polynomial Interpolation, etc. as well as Applications/Demos.
The different methods are mostly split into individual files.
The "Experimenting" files include demos to show the different methods through examples.
Restricted_3_Body.rkt has a few examples of Restricted Three Body Problems. These are designed to test Numerical ODE's, since each set of initial conditions is calculated to a very high accuracy to be precisely periodic (returns to start). Thus, one may look at the solutions from particular ODE solvers and compare their accuracy based on how close they return to the start.