<< Chapter < Page Chapter >> Page >

The trapezoidal rule

Sometimes it is rather convenient to use a numerical approach to solve a definite integral. The trapezoid rule allows us to approximate a definite integral using trapezoids.

The trapz Command

Z = trapz(Y) computes an approximation of the integral of Y using the trapezoidal method.

Now, let us see a typical problem.

Given Area x 2 5 x 2 , an analytical solution would produce 39. Use trapz command and solve it

  1. Initialize variable x as a row vector, from 2 with increments of 0.1 to 5: x=2:.1:5;
  2. Declare variable y as y=x^2; . Note the following error prompt: ??? Error using ==>mpower Inputs must be a scalar and a square matrix. This is because x is a vector quantity and MATLAB is expecting a scalar input for y. Because of that, we need to compute y as a vector and to do that we will use the dot operator as follows: y=x.^2; . This tells MATLAB to create vector y by taking each x value and raising its power to 2.
  3. Now we can issue the following command to calculate the first area, the output will be as follows:
area1=trapz(x,y) area1 =39.0050

Notice that this numerical value is slightly off. So let us increase the number of increments and calculate the area again:

x=2:.01:5; y=x.^2;area2=trapz(x,y) area2 =39.0001

Yet another increase in the number of increments:

x=2:.001:5; y=x.^2;area3=trapz(x,y) area3 =39.0000

Determine the value of the following integral:

x 0 x

  1. Initialize variable x as a row vector, from 0 with increments of pi/100 to pi: x=0:pi/100:pi;
  2. Declare variable y as y=sin(x);
  3. Issue the following command to calculate the first area, the output will be as follows:
area1=trapz(x,y) area1 =1.9998

let us increase the increments as above:

x=0:pi/1000:pi; y=sin(x);area2=trapz(x,y) area2 =2.0000

A gas expands according to the law, PV 1.4 =c. Initially, the pressure is 100 kPa when the volume is 1 m 3 . Write a script to compute the work done by the gas in expanding to three times its original volume O. N. Mathematics: 2 by J. Dobinson, Penguin Library of Technology. © 1969, (p. 184) .

Recall that PV diagrams can be used to estimate the net work performed by a thermodynamic cycle, see Wikipedia or we can use definite integral to compute the work done (WD) as follows:

WD v p

If we rearrange the expression pressure as a function of volume, we get:

P c V 1.4

By considering the initial state, we can determine the value of c:

c 100 1 1.4 100

From the equation and the equation above, we can write:

P 100 V 1.4

By inserting P in WD , we get:

WD v 1 3 100 v 1.4

For MATLAB solution, we will consider P as a function of V and WD . Now, let us apply the three-step approach we have used earlier:

  1. Initialize variable volume as a row vector, from 1 with increments of 0.001 to 3: v=1:0.001:3;
  2. Declare variable pressure as p=100./v.^1.4;
  3. Use the trapz function to calculate the work done, the output will be as follows:
WorkDone=trapz(v,p) WorkDone =88.9015

These steps can be combined in an m-file as follows:

clc disp('A gas expands according to the law, pv^1.4=C')disp('Initial pressure is 100 kPa when the volume is 1 m3') disp('Compute the work done by the gas in expanding')disp('To three times its original volume') disp(' ') % Display blank linev=1:.001:3; % Creating a row vector for volume, v p=100./(v.^1.4); % Computing pressure for volumeWorkDone=trapz(v,p) % Integrating p*dv over 1 to 3 cubic meters

A body moves from rest under the action of a direct force given by F 15 x 3 where x is the distance in meters from the starting point. Write a script to compute the total work done in moving a distance 10 m. O. N. Mathematics: 2 by J. Dobinson, Penguin Library of Technology. © 1969, (p. 183)

Recall that the general definition of mechanical work is given by the following integral, see Wikipedia :

WD x F

Therefore we can write:

WD x 0 10 15 x 3

Applying the steps we followed in the previous examples, we write:

clc disp('A body moves from rest under the action of a direct force given')disp('by F=15/(x+3) where x is the distance in meters') disp('From the starting point.')disp('Compute the total work done in moving a distance 10 m.') disp(' ') % Display blank linex=0:.001:10; % Creating a row vector for distance, x F=15./(x+3); % Computing Force for xWorkDone=trapz(x,F) % Integrating F*dx over 0 to 10 meters.

The output of the above code is:

A body moves from rest under the action of a direct force given by F=15/(x+3) where x is the distance in metersFrom the starting point. Compute the total work done in moving a distance 10 m.WorkDone =21.9951

Summary of key points

  1. In its simplest form, numerical integration involves calculating the areas of segments that make up the area under a curve,
  2. MATLAB has built-in functions to perform numerical integration,
  3. Z = trapz(Y) computes an approximation of the integral of Y using the trapezoidal method.

Questions & Answers

A golfer on a fairway is 70 m away from the green, which sits below the level of the fairway by 20 m. If the golfer hits the ball at an angle of 40° with an initial speed of 20 m/s, how close to the green does she come?
Aislinn Reply
cm
tijani
what is titration
John Reply
what is physics
Siyaka Reply
A mouse of mass 200 g falls 100 m down a vertical mine shaft and lands at the bottom with a speed of 8.0 m/s. During its fall, how much work is done on the mouse by air resistance
Jude Reply
Can you compute that for me. Ty
Jude
what is the dimension formula of energy?
David Reply
what is viscosity?
David
what is inorganic
emma Reply
what is chemistry
Youesf Reply
what is inorganic
emma
Chemistry is a branch of science that deals with the study of matter,it composition,it structure and the changes it undergoes
Adjei
please, I'm a physics student and I need help in physics
Adjanou
chemistry could also be understood like the sexual attraction/repulsion of the male and female elements. the reaction varies depending on the energy differences of each given gender. + masculine -female.
Pedro
A ball is thrown straight up.it passes a 2.0m high window 7.50 m off the ground on it path up and takes 1.30 s to go past the window.what was the ball initial velocity
Krampah Reply
2. A sled plus passenger with total mass 50 kg is pulled 20 m across the snow (0.20) at constant velocity by a force directed 25° above the horizontal. Calculate (a) the work of the applied force, (b) the work of friction, and (c) the total work.
Sahid Reply
you have been hired as an espert witness in a court case involving an automobile accident. the accident involved car A of mass 1500kg which crashed into stationary car B of mass 1100kg. the driver of car A applied his brakes 15 m before he skidded and crashed into car B. after the collision, car A s
Samuel Reply
can someone explain to me, an ignorant high school student, why the trend of the graph doesn't follow the fact that the higher frequency a sound wave is, the more power it is, hence, making me think the phons output would follow this general trend?
Joseph Reply
Nevermind i just realied that the graph is the phons output for a person with normal hearing and not just the phons output of the sound waves power, I should read the entire thing next time
Joseph
Follow up question, does anyone know where I can find a graph that accuretly depicts the actual relative "power" output of sound over its frequency instead of just humans hearing
Joseph
"Generation of electrical energy from sound energy | IEEE Conference Publication | IEEE Xplore" ***ieeexplore.ieee.org/document/7150687?reload=true
Ryan
what's motion
Maurice Reply
what are the types of wave
Maurice
answer
Magreth
progressive wave
Magreth
hello friend how are you
Muhammad Reply
fine, how about you?
Mohammed
hi
Mujahid
A string is 3.00 m long with a mass of 5.00 g. The string is held taut with a tension of 500.00 N applied to the string. A pulse is sent down the string. How long does it take the pulse to travel the 3.00 m of the string?
yasuo Reply
Who can show me the full solution in this problem?
Reofrir Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, A brief introduction to engineering computation with matlab. OpenStax CNX. Nov 17, 2015 Download for free at http://legacy.cnx.org/content/col11371/1.11
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'A brief introduction to engineering computation with matlab' conversation and receive update notifications?

Ask