Recent content by bdoherty1994

  1. B

    MATLAB Solving x'(t) = 1 + t*sin(t*x) in Matlab and comparing Euler methods

    syms x y init = 'y(0)=0' dsolve('Dy = 1 + t.*sin(t*y)', 'y(0)=0', 't') I keep coming up with an error.
  2. B

    Solving and plotting x'(t) = 1 + t*sin(t*x) in Matlab

    Thank you for your help! Which numerical solver would you recommend?
  3. B

    Solving and plotting x'(t) = 1 + t*sin(t*x) in Matlab

    Homework Statement I am trying to solve and plot the function, x'(t) = 1 + t*sin(t*x) where x(0) = 0 and t_final = 1, in order to compare this exact solution to the approximations of Euler's and Improved Euler's Method. Can anyone help me with the code in order to solve this problem, and then...
  4. B

    MATLAB Solving x'(t) = 1 + t*sin(t*x) in Matlab and comparing Euler methods

    Hi everyone, I am trying to solve and plot the function, x'(t) = 1 + t*sin(t*x) where x(0) = 0 and t_final = 1, in order to compare this exact solution to the approximations of Euler's and Improved Euler's Method. Can anyone help me with the code in order to solve this problem, and then plot...