Problem 43285. Solve equation numerically

y'=y

In order to solve equation using computer, numerical analysis are needed. 1st order Euler's method is one of the method. above equation can be expressed as

y(i+1)=y(i)+h*y(i)

y(1)=1

Calculate y(10) using h=0.1. Inputs are y(1) and h.

https://en.wikipedia.org/wiki/Euler_method

Solution Stats

53.04% Correct | 46.96% Incorrect
Last Solution submitted on Mar 28, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers51

Suggested Problems

More from this Author27

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!