Question : Estimate the length of the curve (hypotrochoid) to six significant decimal digits applying a numerical method of your choice.\[x(t) =\frac{3}{2} cos(t) +cos(3t) , y(t) =\frac{3}{2} sin(t) −sin(3t) \]defined…
Question : Simpson rule Matlab code to calculates the numerical approximation to integral x^3 from 0 to 1 with 3 subintervals? Solution : To calculate the numerical approximation of \[\int_{0}^{1}…
Question : Trapezoidal rule Matlab code to calculates the numerical approximation to integral x^2 from 0 to 1 with 4 subintervals? Solution : Trapezoidal rule to calculate the numerical approximation…
Question : Use midpoint rule in Matlab to calculate the numerical approximation to x^3 in [0,2] with 5 subintervals? Solution : Midpoint Rule to calculate the numerical approximation of the…
Question : how to write rightpoint rule Matlab code to calculate the numerical approximation to x^2 in [0 5] with 10 subintervals ? Solution : Rightpoint rule to calculate the…
Question : Leftpoint rule Matlab code to calculate the numerical approximation of x^2/2 in [0 5] ? Solution : Leftpoint rule to calculate the numerical approximation of the definite integral…
Answer : Example 1: Code in MATLAB partial derivative of z=sin(x+y) % Matlab program to find partial derivative of z=sin(x+y) clear all close all syms x y z=sin(x+y) % given…
Question : How to plot exp(t) in matlab ? Solution : We shall write the Matlab program to plot exponential function in the interval [-10 10] y=@(t) exp(t) % exponential…