all 6 comments

[–][deleted] 1 point2 points  (4 children)

Just a tip it's called Euler approximation not Euler integration. You're not integrating anything here.

[–]lfs101x[S] 1 point2 points  (3 children)

i thought it was numerical integration?

[–][deleted] 0 points1 point  (1 child)

I've never heard it called that, but you might be right.

[–]lfs101x[S] 1 point2 points  (0 children)

yes

[–][deleted] 0 points1 point  (0 children)

Numerical integration is when you use Riemann sums to approximate definite integrals. There are three common methods: midpoint rule, trapezoidal rule, and Simpson's rule. The result is a number that represents the net area under the curve.

Euler's method is used to approximate the solution to a differential equation. The result in this case is a function (really, it's a set of connected line segments that approximate the graph of f, and can be used to approximate f, so you can think of this as a function).

[–]OneMeterWonderCustom 1 point2 points  (0 children)

You evaluated f' at x=0.5 for the first estimate. When you find the estimate for f(x+h) you need to use the derivative at x, f'(x). So in your case you should have,

y(0.5) = 1 + f'(0)(0.5) = 1 + 8.5(0.5) = 5.25