Program for solving differential equations using the Runge Kutta method

This project was made for the subject Numerical Mathematics/Methods on the 3rd semester of my course "Computer science".

The topic of this project is to create a program for solving Differential Equations using the Runge Kutta method. It contains two different Runge Kutta methods, both with their own start formulas that only have a difference in their coefficients. In numerical analysis, the Runge–Kutta methods are a family of implicit and explicit iterative methods, which include the well-known routine called the Euler Method, used in temporal discretization for the approximate solutions of ordinary differential equations. These methods were developed around 1900 by the German mathematicians Carl Runge and Wilhelm Kutta, that is where the name Runge Kutta came from. Below is a template for many different Runge Kutta methods:

Runge–Kutta formula

Visit my github to find out more about the implementation itself: github.com/smajic07/numericka-diferencijalne
Find out more about Runge Kutta:
wiki/Runge