Problem 3. Solve the following differential equation by: a) Exactly (analytically) This is by hand. b) Euler's method us
Posted: Thu May 05, 2022 1:09 pm
Problem 3. Solve the following differential equation by: a) Exactly (analytically) This is by hand. b) Euler's method using a C program c) Runge-Kutta method using a C program Use 0≤1≤1 and h-0.1 Important: part b) and c) must be implemented in a single C program and must output a table with four columns (i.e., values for t, Euler Method, Range-Kutta Method, and the exact solution). The goal is to see how the values differ at each step. y' y sin(t), y(0) = 1,