Solve Euler Method in C++ for Beginners

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 4K views
Demjan
Messages
1
Reaction score
0
Summary: Problem with Euler Method in C++

Hello, I have a very difficult problem for me (a beginner in programming) how to make the version of the euler method presented in c ++ with the void, float functions, so that the program will calculate from the data that I enter during the program.
Code:
#include<iostream>
#include <string>
using namespace std;

double f(double x, double y) { return x + y; }

int main()
{
 double x0, y0, xn, h, yn, slope;
 int i, n;

 count<<"Warunki początkowe: "<< endl;
 count<<"x0 = ";
 cin>> x0;
 count<<"y0 = ";
 cin >> y0;
 count<<"Enter calculation point: xn = ";
 cin>>xn;
 count<<"Enter number of steps: ";
 cin>> n; h = (xn-x0)/n;

 count<<"\nx0\ty0\tslope\tyn\n";
 count<<"------------------------------\n";

 for(i=0; i < n; i++)
 {
  nachyl = f(x0, y0);
  yn = y0 + h * slope;
  count<<  x0 <<"\t"<<  y0 <<"\t"<<  slope <<"\t"<<  yn << endl;
  y0 = yn;
  x0 = x0+h;
 } count<<"\nValue of y at x = "<< xn<< " is " << yn;

 return 0;
}
 
Last edited by a moderator:
Physics news on Phys.org
Demjan said:
Summary: Problem with Euler Method in C++

Hello, I have a very difficult problem for me (a beginner in programming) how to make the version of the euler method presented in c ++ with the void, float functions, so that the program will calculate from the data that I enter during the program.
Code:
#include<iostream>
#include <string>

using namespace std;

double f(double x, double y) { return x + y; }

int main()
{
 double x0, y0, xn, h, yn, slope;
 int i, n;

 count<<"Warunki początkowe: "<< endl;
 count<<"x0 = ";
 cin>> x0;
 count<<"y0 = ";
 cin >> y0;
 count<<"Enter calculation point: xn = ";
 cin>>xn;
 count<<"Enter number of steps: ";
 cin>> n;

 h = (xn-x0)/n;

 count<<"\nx0\ty0\tslope\tyn\n";
 count<<"------------------------------\n";

 for(i=0; i < n; i++)
 {
  nachyl = f(x0, y0);
  yn = y0 + h * slope;
  count<<  x0 <<"\t"<<  y0 <<"\t"<<  slope <<"\t"<<  yn << endl;
  y0 = yn;
  x0 = x0+h;
 }

 count<<"\nValue of y at x = "<< xn<< " is " << yn;

 return 0;
}
What is your question? You said "how to make the version of the euler method presented in c ++ with the void, float functions" -- what do you mean by that?

In the Euler method, you are given a differential equation of the form dy/dx = f(x, y), with initial condition ##y(x_0) = y_0##.

Try your code out on this differential equation: ##dy/dx = 2x##, with initial condition y(1) = 1. Here the function to use is ##f(x, y) = 2x + 0y##.
 
Last edited:
Reply
  • Like
Likes   Reactions: Delta2
With a minor change in the for loop in your code I was able to get it to work.

You have a variable named slope that you didn't use. Your function f is the slope. The example differential equation I'm solving is dy/dx = 2x + 0y, so f(x, y) = 2x + 0y, or f(x, 0).
Here is my definition for f:
Code:
double f(double x, double y) { return 2 * x ; }
Since y doesn't appear in the return value, this function is called using f(x, 0).

Here is my for loop:
Code:
for (i = 0; i < n; i++)
{
    slope = f(x0, 0);         
    yn = y0 + h * slope;
    count << x0 << "\t" << y0 << "\t" << slope << "\t" << yn << endl;
    y0 = yn;
    x0 = x0 + h;
}

Using dy/dx = 2x and a starting point of (1, 1), and an ending x-value of 1.1 and 10 steps, I get a y-value of 1.209, which is pretty close to the exact value of 1.21.
Euler's method is probably the least accurate of methods for solving differential equations, so my result isn't so far off.
 
Reply
  • Like
Likes   Reactions: Delta2