Question

Compute the area bounded by the function 50*sin(10*x^3-.5) and the x-axis from x = π/6 to...

Compute the area bounded by the function 50*sin(10*x^3-.5) and the x-axis from x = π/6 to x = π/3 (Use 100 trapezoids). Write the value below as the one displayed when you issue "format short" in MATLAB.

Homework Answers

Answer #1


clc;
clear all;
format short
f=@(x)50*sin(10*x^3-.5); %function
a=pi/6; %lower limit
b=pi/3;%upper limit
n=100; % number of nodes
h=(b-a)/n; % step length
x=a:h:b;% x is running from a tob b


for i=1:length(x)
y(i)=f(x(i));
end
% Trapezoid formula
l=length(x);
Th=((h/2)*((y(1)+y(l))+2*(sum(y)-y(1)-y(l))));
disp('Integral value by Trapezidal rule')
Th

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
1. Find the area between the curve f(x)=sin^3(x)cos^2(x) and y=0 from 0 ≤ x ≤ π...
1. Find the area between the curve f(x)=sin^3(x)cos^2(x) and y=0 from 0 ≤ x ≤ π 2. Find the surface area of the function f(x)=x^3/6 + 1/2x from 1≤ x ≤ 2 when rotated about the x-axis.
Compute the surface area of revolution about the x-axis over the interval [0,π] for y=4sin(x) (Use...
Compute the surface area of revolution about the x-axis over the interval [0,π] for y=4sin(x) (Use symbolic notation and fractions where needed.)
Compute the average value of the function f ( s ) = sin^5 s cos^6 son...
Compute the average value of the function f ( s ) = sin^5 s cos^6 son the interval [ 0 , π ]
Given the region bounded by the function below and the x-axis on the interval also given:...
Given the region bounded by the function below and the x-axis on the interval also given: y = ln(x) / sin(x/5) , [11,14] a) estimate the arc length of y=f(x) on the given interval b(determine the exact arc length c) the average value must be between ____ and ____ (min and max) d) what is the average value e) the mean value theorem states that there must be at least one x-value c in [11,14] such that fave=f(c). use technology...
Consider the function f(x)=x⋅sin(x). a) Find the area bound by y=f(x) and the x-axis over the...
Consider the function f(x)=x⋅sin(x). a) Find the area bound by y=f(x) and the x-axis over the interval, 0≤x≤π. (Do this without a calculator for practice and give the exact answer.) b) Let M(x) be the Maclaurin polynomial that consists of the first 5 nonzero terms of the Maclaurin series for f(x). Find M(x) by taking advantage of the fact that you already know the Maclaurin series for sin x. M(x)= c) Since every Maclaurin polynomial is by definition centered at...
Consider the parametric equations below. x = t sin(t),    y = t cos(t),    0 ≤ t ≤ π/3...
Consider the parametric equations below. x = t sin(t),    y = t cos(t),    0 ≤ t ≤ π/3 Set up an integral that represents the area of the surface obtained by rotating the given curve about the x-axis. Use your calculator to find the surface area correct to four decimal places
1. (a) Use the graph paper provided to sketch the region bounded by the x-axis and...
1. (a) Use the graph paper provided to sketch the region bounded by the x-axis and the lines x + y = 4 and y = 3x. (b) Shade the region you just drew above. (c) Suppose that you were going to use Calculus to compute the area of the shaded region in part (a) above. If you chose the x-axis as your axis of integration, then how many integrals would be needed to compute this area? (d) Suppose that...
1. Find the area of the region bounded by the graph of the function f(x) =...
1. Find the area of the region bounded by the graph of the function f(x) = x4 − 2x2 + 8, the x-axis, and the lines x = a and x = b, where a < b and a and b are the x-coordinates of the relative maximum point and a relative minimum point of f, respectively. 2.Evaluate the definite integral. 26 2 2x + 1 dx 0 3. Find the area of the region under the graph of f...
Consider the function f(x)=4x2-x3 provide the graph the region bounded by f(x) and the x-axis over...
Consider the function f(x)=4x2-x3 provide the graph the region bounded by f(x) and the x-axis over the interval [0,4], then estimate the area of this region using left reman sum with n=4, 10 and 20 subintervals. you may use the graphing calculator to facilitate the calculation of the Riemann sum. use four decimal places in all your calculations and answers.
sin(x)=x-x3/3!+x5/5! Below is the expansion of the Taylor series sin (x) function around the x =...
sin(x)=x-x3/3!+x5/5! Below is the expansion of the Taylor series sin (x) function around the x = [x] point. Please continue.