<< 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

how does Neisseria cause meningitis
Nyibol Reply
what is microbiologist
Muhammad Reply
what is errata
Muhammad
is the branch of biology that deals with the study of microorganisms.
Ntefuni Reply
What is microbiology
Mercy Reply
studies of microbes
Louisiaste
when we takee the specimen which lumbar,spin,
Ziyad Reply
How bacteria create energy to survive?
Muhamad Reply
Bacteria doesn't produce energy they are dependent upon their substrate in case of lack of nutrients they are able to make spores which helps them to sustain in harsh environments
_Adnan
But not all bacteria make spores, l mean Eukaryotic cells have Mitochondria which acts as powerhouse for them, since bacteria don't have it, what is the substitution for it?
Muhamad
they make spores
Louisiaste
what is sporadic nd endemic, epidemic
Aminu Reply
the significance of food webs for disease transmission
Abreham
food webs brings about an infection as an individual depends on number of diseased foods or carriers dully.
Mark
explain assimilatory nitrate reduction
Esinniobiwa Reply
Assimilatory nitrate reduction is a process that occurs in some microorganisms, such as bacteria and archaea, in which nitrate (NO3-) is reduced to nitrite (NO2-), and then further reduced to ammonia (NH3).
Elkana
This process is called assimilatory nitrate reduction because the nitrogen that is produced is incorporated in the cells of microorganisms where it can be used in the synthesis of amino acids and other nitrogen products
Elkana
Examples of thermophilic organisms
Shu Reply
Give Examples of thermophilic organisms
Shu
advantages of normal Flora to the host
Micheal Reply
Prevent foreign microbes to the host
Abubakar
they provide healthier benefits to their hosts
ayesha
They are friends to host only when Host immune system is strong and become enemies when the host immune system is weakened . very bad relationship!
Mark
what is cell
faisal Reply
cell is the smallest unit of life
Fauziya
cell is the smallest unit of life
Akanni
ok
Innocent
cell is the structural and functional unit of life
Hasan
is the fundamental units of Life
Musa
what are emergency diseases
Micheal Reply
There are nothing like emergency disease but there are some common medical emergency which can occur simultaneously like Bleeding,heart attack,Breathing difficulties,severe pain heart stock.Hope you will get my point .Have a nice day ❣️
_Adnan
define infection ,prevention and control
Innocent
I think infection prevention and control is the avoidance of all things we do that gives out break of infections and promotion of health practices that promote life
Lubega
Heyy Lubega hussein where are u from?
_Adnan
en français
Adama
which site have a normal flora
ESTHER Reply
Many sites of the body have it Skin Nasal cavity Oral cavity Gastro intestinal tract
Safaa
skin
Asiina
skin,Oral,Nasal,GIt
Sadik
How can Commensal can Bacteria change into pathogen?
Sadik
How can Commensal Bacteria change into pathogen?
Sadik
all
Tesfaye
by fussion
Asiina
what are the advantages of normal Flora to the host
Micheal
what are the ways of control and prevention of nosocomial infection in the hospital
Micheal
what is inflammation
Shelly Reply
part of a tissue or an organ being wounded or bruised.
Wilfred
what term is used to name and classify microorganisms?
Micheal Reply
Binomial nomenclature
adeolu
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