Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Problem 3 Sophomore's Dream Consider the true value of the following definite integral: 1 x* dx = 0.7834305107 (up to 10 significant digits). Submit a
Problem 3 Sophomore's Dream Consider the true value of the following definite integral: 1 x* dx = 0.7834305107 (up to 10 significant digits). Submit a MATLAB script to numerically compute the above integral using (a) the midpoint method with x-axis partition (0,1/2], (1/2, 1]; (b) the trapezoid method with the same x-axis partition as in part (a); and (c) the three point Simp- son's method. Your MATLAB script should look like the following (fill in the right hand sides of I midpoint etc.), and should print the relative errors up to 10 significant digits in (a), (b), (c). close all; clear; clc; format long f = Q(x) x. ^x; I_true = 0.7834305107; I_midpoint = ; I_trapezoid = ; I_simpson = ; rel_err_midpoint = chop(abs ((I_true - I_midpoint)/I_true) ,10) rel_err_trapezoid = chop (abs((I_true - I_trapezoid)/I_true) ,10) rel_err_simpson = chop(abs((I_true - I_simpson)/I_true), 10)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started