CBE 450 Chemical Reactor Fundamentals Fall, 2009 Homework Assignment #3

Size: px
Start display at page:

Download "CBE 450 Chemical Reactor Fundamentals Fall, 2009 Homework Assignment #3"

Transcription

1 BE 450 hemicl Rector Fundmentls Fll, 009 Homework ssignment #3 1. Numericl Solution of Sgle Nonler lgebric Eqution onsider contuous stirred-tnk rector (STR) which the followg dimeriztion rection goes from B with the followg mss blnce on t stedy stte 0 F F Vkdim er The let flow rte is 1 liter/sec, s is the let flow rte. The let concentrtion is 10 mole/liter. The rte constnt is 0.5 liter/mol/sec. The volume of the rector is 1 liter. () Solve this nonler eqution nlyticlly. (b) How mny roots re there? (c) Which root is the physiclly mengful root? Why? (d) Solve this nonler eqution usg Golseek Excel. Provide prt- of the spredsheet. (e) Solve this nonler eqution usg the Newton-Rphson method with numericl derivtives Mtlb. Note the itil guess you used to converge ot the physiclly mengful root. Solution: () Solve this nonler eqution nlyticlly. 0 F F Vkdim er This is qudrtic eqution. x with solution bx c 0 x b b 4c In our cse x F F 4Vk Vk dim er dim er F or

2 (b) How mny roots re there? There re two roots to qudrtic eqution. (c) Which root is the physiclly mengful root? Why? 3.58 is the physiclly mengful root. The root must be positive sce it is concentrtion. The root must lso be less thn 10.0, sce tht is the let concentrtion stisfies both these roots. (d) Solve this nonler eqution usg Golseek Excel. Provide prt- of the spredsheet. 0.5 V 1 kdimer 0.5 b 1 F 1 c 10 F 1 10 x f (e) Solve this nonler eqution usg the Newton-Rphson method with numericl derivtives Mtlb. Note the itil guess you used to converge ot the physiclly mengful root. I used the newrph_nd.m code. The put file ws: function f = funkevl(x) = x; F = 1; F = 1; V = 1; kdimer = 0.50; = 10; f = F*-F*-V*kdimer*^; The Mtlb put ws:» [x0,err] = newrph_nd(5) icount = 1 xold = e+000 f = e+000 df = e+000 xnew = e+000 err = e+00 icount = xold = e+000 f = e-001 df = e+000 xnew = e+000 err = e-00 icount = 3 xold = e+000 f = e-00 df = e+000 xnew = e+000 err = e-004 icount = 4 xold = e+000 f = e-006 df = e+000 xnew = e+000 err = e-007 x0 = err = e-007. Numericl Solution of System of Nonler lgebric Equtions

3 onsider contuous stirred-tnk rector (STR) which the followg meriztion rection goes from B with the followg mss blnce on t stedy stte 0 F F Vk The let flow rte is 1 liter/sec, s is the let flow rte. The let concentrtion is 10 mole/liter. The rte constnt is k k o exp E RT where k o = 1.0 sec -1 nd The stedy stte energy blnce is E = 500 J/mol/K. The volume of the rector is 1 liter. 0 F H F H H R Vk where the let enthlpy, H pt, where the het cpcity is 4.0 kj/liter/k nd the let temperture is 300 K, where the enthlpy of the rector is H pt, nd where the het of rection, H R, is -30 kj/mol. Fd the stedy stte concentrtion of nd temperture. Provide Mtlb eqution put file nd screen put. (You do not hve to provide the entire Newton Rphson code provided clss.) Solution: I used the NRNDN.m code with the syseqnput.m put file. The put file ws: function f = syseqnput(x); = x(1); % mol/liter T = x(); % K ko = 1.0; % 1/sec E = 500; % J/mol/K R = 8.314; % J/mol/K T = 300; % K k = ko*exp(-e/(r*t)); F = 1.0; % liter/sec F = 1.0; % liter/sec V = 1.0; % liter 3

4 = 10.0; % mol/liter p = 4000; % J/liter/K H = p*t; % J/liter H = p*t; % J/liter delthr = ; % J/mol f(1) = F* - F* - V*k*; f() = F*H - F*H - delthr*v*k*; The Mtlb put ws» [f,x] = NRNDN([5,300],1.0e-6,1) iter = 1, err = 1.48e+001 iter =, err =.03e-001 iter = 3, err = 5.43e-005 iter = 4, err = 3.85e-01 f = e-008 x = 1.0e+00 * The let concentrtion is 7.18 mol/liter nd the rector temperture is 31 K. 3. Numericl Solution of System of Nonler Ordry Differentil Equtions onsider contuous stirred-tnk rector (STR) which the followg meriztion rection goes from B with the followg mss blnce on V d dt F F Vk The let flow rte is 1 liter/sec, s is the let flow rte. The let concentrtion is 10 mole/liter. The rte constnt is k k o E exp RT where k o = 1.0 sec -1 nd E = 500 J/mol/K. The volume of the rector is 1 liter. The stedy stte energy blnce is V p dt F dt H F H H R Vk 4

5 H pt where the let enthlpy,, where the het cpcity is 4.0 kj/liter/k nd the let H pt temperture is 300 K, where the enthlpy of the rector is, nd where the het of rection, H R, is -30 kj/mol. The itil conditions with the rector re T(t=0) = 300 K nd (t=0) = 0.0 mol/liter. () Fd the trnsient behvior of the concentrtion nd temperture. Provide Mtlb eqution put file nd grphicl put. (You do not hve to provide the entire Runge-Kutt code provided clss.) (b) Wht re the long-time (stedy stte vlues) of the concentrtion of nd the temperture? (c) How do the vlues (b) compre with the stedy stte solutions obted problem? Solution: () Fd the trnsient behvior of the concentrtion nd temperture. Provide Mtlb eqution put file nd grphicl put. (You do not hve to provide the entire Runge-Kutt code provided clss.) I used the sysode.m code with the sysodeput.m put file. The put file ws: function dydt = sysodeput(x,y,nvec); = y(1); % mol/liter T = y(); % K ko = 1.0; % 1/sec E = 500; % J/mol/K R = 8.314; % J/mol/K T = 300; % K k = ko*exp(-e/(r*t)); F = 1.0; % liter/sec F = 1.0; % liter/sec V = 1.0; % liter = 10.0; % mol/liter p = 4000; % J/liter/K H = p*t; % J/liter H = p*t; % J/liter delthr = ; % J/mol dydt(1) = (F* - F* - V*k*)/V; dydt() = (F*H - F*H - delthr*v*k*)/(v*p); The commnd t the commnd-le prompt ws: [y,x] = sysode(,1000,0,0,[0,300]); The plot looked s follows: 5

6 y x The blck le is the concentrtion of. The red le is the temperture. You cn see tht the system is lredy t stedy stte t t = 0 sec. (b) Wht re the long-time (stedy stte vlues) of the concentrtion of nd the temperture? n exmtion of the put file gives the concentrtion nd temperture t t = 0 sec e e e+00 The fl concentrtion is 7.18 mol/liter. The temperture is 31 K. (c) How do the vlues (b) compre with the stedy stte solutions obted problem? These vlues gree to b 8 significnt figures with the stedy stte vlues obted problem. 6

CBE 291b - Computation And Optimization For Engineers

CBE 291b - Computation And Optimization For Engineers The University of Western Ontrio Fculty of Engineering Science Deprtment of Chemicl nd Biochemicl Engineering CBE 9b - Computtion And Optimiztion For Engineers Mtlb Project Introduction Prof. A. Jutn Jn

More information

Ordinary Differential Equations- Boundary Value Problem

Ordinary Differential Equations- Boundary Value Problem Ordinry Differentil Equtions- Boundry Vlue Problem Shooting method Runge Kutt method Computer-bsed solutions o BVPFD subroutine (Fortrn IMSL subroutine tht Solves (prmeterized) system of differentil equtions

More information

1.1. Linear Constant Coefficient Equations. Remark: A differential equation is an equation

1.1. Linear Constant Coefficient Equations. Remark: A differential equation is an equation 1 1.1. Liner Constnt Coefficient Equtions Section Objective(s): Overview of Differentil Equtions. Liner Differentil Equtions. Solving Liner Differentil Equtions. The Initil Vlue Problem. 1.1.1. Overview

More information

Chapter 3 Solving Nonlinear Equations

Chapter 3 Solving Nonlinear Equations Chpter 3 Solving Nonliner Equtions 3.1 Introduction The nonliner function of unknown vrible x is in the form of where n could be non-integer. Root is the numericl vlue of x tht stisfies f ( x) 0. Grphiclly,

More information

HOMEWORK SOLUTIONS MATH 1910 Sections 7.9, 8.1 Fall 2016

HOMEWORK SOLUTIONS MATH 1910 Sections 7.9, 8.1 Fall 2016 HOMEWORK SOLUTIONS MATH 9 Sections 7.9, 8. Fll 6 Problem 7.9.33 Show tht for ny constnts M,, nd, the function yt) = )) t ) M + tnh stisfies the logistic eqution: y SOLUTION. Let Then nd Finlly, y = y M

More information

CONVERSION AND REACTOR SIZING (2) Marcel Lacroix Université de Sherbrooke

CONVERSION AND REACTOR SIZING (2) Marcel Lacroix Université de Sherbrooke CONVERSION ND RECTOR SIZING (2) Marcel Lacroix Université de Sherbrooke CONVERSION ND RECTOR SIZING: OBJECTIVES 1. TO DEINE CONVERSION j. 2. TO REWRITE THE DESIGN EQUTIONS IN TERMS O CONVERSION j. 3. TO

More information

Module 2: Rate Law & Stoichiomtery (Chapter 3, Fogler)

Module 2: Rate Law & Stoichiomtery (Chapter 3, Fogler) CHE 309: Chemicl Rection Engineering Lecture-8 Module 2: Rte Lw & Stoichiomtery (Chpter 3, Fogler) Topics to be covered in tody s lecture Thermodynmics nd Kinetics Rection rtes for reversible rections

More information

Z b. f(x)dx. Yet in the above two cases we know what f(x) is. Sometimes, engineers want to calculate an area by computing I, but...

Z b. f(x)dx. Yet in the above two cases we know what f(x) is. Sometimes, engineers want to calculate an area by computing I, but... Chpter 7 Numericl Methods 7. Introduction In mny cses the integrl f(x)dx cn be found by finding function F (x) such tht F 0 (x) =f(x), nd using f(x)dx = F (b) F () which is known s the nlyticl (exct) solution.

More information

CHAPTER 4a. ROOTS OF EQUATIONS

CHAPTER 4a. ROOTS OF EQUATIONS CHAPTER 4. ROOTS OF EQUATIONS A. J. Clrk School o Engineering Deprtment o Civil nd Environmentl Engineering by Dr. Ibrhim A. Asskk Spring 00 ENCE 03 - Computtion Methods in Civil Engineering II Deprtment

More information

Topic 1 Notes Jeremy Orloff

Topic 1 Notes Jeremy Orloff Topic 1 Notes Jerem Orloff 1 Introduction to differentil equtions 1.1 Gols 1. Know the definition of differentil eqution. 2. Know our first nd second most importnt equtions nd their solutions. 3. Be ble

More information

The Wave Equation I. MA 436 Kurt Bryan

The Wave Equation I. MA 436 Kurt Bryan 1 Introduction The Wve Eqution I MA 436 Kurt Bryn Consider string stretching long the x xis, of indeterminte (or even infinite!) length. We wnt to derive n eqution which models the motion of the string

More information

P 3 (x) = f(0) + f (0)x + f (0) 2. x 2 + f (0) . In the problem set, you are asked to show, in general, the n th order term is a n = f (n) (0)

P 3 (x) = f(0) + f (0)x + f (0) 2. x 2 + f (0) . In the problem set, you are asked to show, in general, the n th order term is a n = f (n) (0) 1 Tylor polynomils In Section 3.5, we discussed how to pproximte function f(x) round point in terms of its first derivtive f (x) evluted t, tht is using the liner pproximtion f() + f ()(x ). We clled this

More information

63. Representation of functions as power series Consider a power series. ( 1) n x 2n for all 1 < x < 1

63. Representation of functions as power series Consider a power series. ( 1) n x 2n for all 1 < x < 1 3 9. SEQUENCES AND SERIES 63. Representtion of functions s power series Consider power series x 2 + x 4 x 6 + x 8 + = ( ) n x 2n It is geometric series with q = x 2 nd therefore it converges for ll q =

More information

Chapter 3. Vector Spaces

Chapter 3. Vector Spaces 3.4 Liner Trnsformtions 1 Chpter 3. Vector Spces 3.4 Liner Trnsformtions Note. We hve lredy studied liner trnsformtions from R n into R m. Now we look t liner trnsformtions from one generl vector spce

More information

Chemistry Department. The Islamic University of Gaza. General Chemistry B.(CHEMB 1301) Time:2 hours الرقم الجامعي... اسم المدرس...

Chemistry Department. The Islamic University of Gaza. General Chemistry B.(CHEMB 1301) Time:2 hours الرقم الجامعي... اسم المدرس... The Islmic University of Gz Chemistry Deprtment Generl Chemistry B.(CHEMB 1301) Time:2 hours 60 اسم الطالب... الرقم الجامعي... اسم المدرس... R = 8.314 J/mol.K, or = 0.0821 L.tm/mol.K Q1- True ( ) or flse(

More information

1 The fundamental theorems of calculus.

1 The fundamental theorems of calculus. The fundmentl theorems of clculus. The fundmentl theorems of clculus. Evluting definite integrls. The indefinite integrl- new nme for nti-derivtive. Differentiting integrls. Theorem Suppose f is continuous

More information

Ch. 24 Molecular Reaction Dynamics 1. Collision Theory 2. Diffusion-Controlled Reaction

Ch. 24 Molecular Reaction Dynamics 1. Collision Theory 2. Diffusion-Controlled Reaction Ch. 4 Moleculr Rection Dynmics 1. Collision Theory. Diffusion-Controlle Rection Lecture 17 3. The Mteril Blnce Eqution 4. Trnsition Stte Theory: The Eyring Eqution 5. Trnsition Stte Theory: Thermoynmic

More information

3.1 Exponential Functions and Their Graphs

3.1 Exponential Functions and Their Graphs . Eponentil Functions nd Their Grphs Sllbus Objective: 9. The student will sketch the grph of eponentil, logistic, or logrithmic function. 9. The student will evlute eponentil or logrithmic epressions.

More information

MATH 3795 Lecture 18. Numerical Solution of Ordinary Differential Equations.

MATH 3795 Lecture 18. Numerical Solution of Ordinary Differential Equations. MATH 3795 Lecture 18. Numericl Solution of Ordinry Differentil Equtions. Dmitriy Leykekhmn Fll 2008 Gols Introduce ordinry differentil equtions (ODEs) nd initil vlue problems (IVPs). Exmples of IVPs. Existence

More information

B.Sc. in Mathematics (Ordinary)

B.Sc. in Mathematics (Ordinary) R48/0 DUBLIN INSTITUTE OF TECHNOLOGY KEVIN STREET, DUBLIN 8 B.Sc. in Mthemtics (Ordinry) SUPPLEMENTAL EXAMINATIONS 01 Numericl Methods Dr. D. Mckey Dr. C. Hills Dr. E.A. Cox Full mrks for complete nswers

More information

First Law of Thermodynamics. Control Mass (Closed System) Conservation of Mass. Conservation of Energy

First Law of Thermodynamics. Control Mass (Closed System) Conservation of Mass. Conservation of Energy First w of hermodynmics Reding Problems 3-3-7 3-0, 3-5, 3-05 5-5- 5-8, 5-5, 5-9, 5-37, 5-0, 5-, 5-63, 5-7, 5-8, 5-09 6-6-5 6-, 6-5, 6-60, 6-80, 6-9, 6-, 6-68, 6-73 Control Mss (Closed System) In this section

More information

Improper Integrals. MATH 211, Calculus II. J. Robert Buchanan. Spring Department of Mathematics

Improper Integrals. MATH 211, Calculus II. J. Robert Buchanan. Spring Department of Mathematics Improper Integrls MATH 2, Clculus II J. Robert Buchnn Deprtment of Mthemtics Spring 28 Definite Integrls Theorem (Fundmentl Theorem of Clculus (Prt I)) If f is continuous on [, b] then b f (x) dx = [F(x)]

More information

Math& 152 Section Integration by Parts

Math& 152 Section Integration by Parts Mth& 5 Section 7. - Integrtion by Prts Integrtion by prts is rule tht trnsforms the integrl of the product of two functions into other (idelly simpler) integrls. Recll from Clculus I tht given two differentible

More information

Math 100 Review Sheet

Math 100 Review Sheet Mth 100 Review Sheet Joseph H. Silvermn December 2010 This outline of Mth 100 is summry of the mteril covered in the course. It is designed to be study id, but it is only n outline nd should be used s

More information

Consequently, the temperature must be the same at each point in the cross section at x. Let:

Consequently, the temperature must be the same at each point in the cross section at x. Let: HW 2 Comments: L1-3. Derive the het eqution for n inhomogeneous rod where the therml coefficients used in the derivtion of the het eqution for homogeneous rod now become functions of position x in the

More information

Physics Graduate Prelim exam

Physics Graduate Prelim exam Physics Grdute Prelim exm Fll 2008 Instructions: This exm hs 3 sections: Mechnics, EM nd Quntum. There re 3 problems in ech section You re required to solve 2 from ech section. Show ll work. This exm is

More information

Math 31S. Rumbos Fall Solutions to Assignment #16

Math 31S. Rumbos Fall Solutions to Assignment #16 Mth 31S. Rumbos Fll 2016 1 Solutions to Assignment #16 1. Logistic Growth 1. Suppose tht the growth of certin niml popultion is governed by the differentil eqution 1000 dn N dt = 100 N, (1) where N(t)

More information

HQPD - ALGEBRA I TEST Record your answers on the answer sheet.

HQPD - ALGEBRA I TEST Record your answers on the answer sheet. HQPD - ALGEBRA I TEST Record your nswers on the nswer sheet. Choose the best nswer for ech. 1. If 7(2d ) = 5, then 14d 21 = 5 is justified by which property? A. ssocitive property B. commuttive property

More information

Lecture 14: Quadrature

Lecture 14: Quadrature Lecture 14: Qudrture This lecture is concerned with the evlution of integrls fx)dx 1) over finite intervl [, b] The integrnd fx) is ssumed to be rel-vlues nd smooth The pproximtion of n integrl by numericl

More information

1.2. Linear Variable Coefficient Equations. y + b "! = a y + b " Remark: The case b = 0 and a non-constant can be solved with the same idea as above.

1.2. Linear Variable Coefficient Equations. y + b ! = a y + b  Remark: The case b = 0 and a non-constant can be solved with the same idea as above. 1 12 Liner Vrible Coefficient Equtions Section Objective(s): Review: Constnt Coefficient Equtions Solving Vrible Coefficient Equtions The Integrting Fctor Method The Bernoulli Eqution 121 Review: Constnt

More information

PDE Notes. Paul Carnig. January ODE s vs PDE s 1

PDE Notes. Paul Carnig. January ODE s vs PDE s 1 PDE Notes Pul Crnig Jnury 2014 Contents 1 ODE s vs PDE s 1 2 Section 1.2 Het diffusion Eqution 1 2.1 Fourier s w of Het Conduction............................. 2 2.2 Energy Conservtion.....................................

More information

The final exam will take place on Friday May 11th from 8am 11am in Evans room 60.

The final exam will take place on Friday May 11th from 8am 11am in Evans room 60. Mth 104: finl informtion The finl exm will tke plce on Fridy My 11th from 8m 11m in Evns room 60. The exm will cover ll prts of the course with equl weighting. It will cover Chpters 1 5, 7 15, 17 21, 23

More information

Math 520 Final Exam Topic Outline Sections 1 3 (Xiao/Dumas/Liaw) Spring 2008

Math 520 Final Exam Topic Outline Sections 1 3 (Xiao/Dumas/Liaw) Spring 2008 Mth 520 Finl Exm Topic Outline Sections 1 3 (Xio/Dums/Liw) Spring 2008 The finl exm will be held on Tuesdy, My 13, 2-5pm in 117 McMilln Wht will be covered The finl exm will cover the mteril from ll of

More information

Chemical Reaction Engineering

Chemical Reaction Engineering Lecture 20 hemcl Recton Engneerng (RE) s the feld tht studes the rtes nd mechnsms of chemcl rectons nd the desgn of the rectors n whch they tke plce. Lst Lecture Energy Blnce Fundmentls F 0 E 0 F E Q W

More information

Physics 202H - Introductory Quantum Physics I Homework #08 - Solutions Fall 2004 Due 5:01 PM, Monday 2004/11/15

Physics 202H - Introductory Quantum Physics I Homework #08 - Solutions Fall 2004 Due 5:01 PM, Monday 2004/11/15 Physics H - Introductory Quntum Physics I Homework #8 - Solutions Fll 4 Due 5:1 PM, Mondy 4/11/15 [55 points totl] Journl questions. Briefly shre your thoughts on the following questions: Of the mteril

More information

Fig. 1. Open-Loop and Closed-Loop Systems with Plant Variations

Fig. 1. Open-Loop and Closed-Loop Systems with Plant Variations ME 3600 Control ystems Chrcteristics of Open-Loop nd Closed-Loop ystems Importnt Control ystem Chrcteristics o ensitivity of system response to prmetric vritions cn be reduced o rnsient nd stedy-stte responses

More information

(4.1) D r v(t) ω(t, v(t))

(4.1) D r v(t) ω(t, v(t)) 1.4. Differentil inequlities. Let D r denote the right hnd derivtive of function. If ω(t, u) is sclr function of the sclrs t, u in some open connected set Ω, we sy tht function v(t), t < b, is solution

More information

Travelling Profile Solutions For Nonlinear Degenerate Parabolic Equation And Contour Enhancement In Image Processing

Travelling Profile Solutions For Nonlinear Degenerate Parabolic Equation And Contour Enhancement In Image Processing Applied Mthemtics E-Notes 8(8) - c IN 67-5 Avilble free t mirror sites of http://www.mth.nthu.edu.tw/ men/ Trvelling Profile olutions For Nonliner Degenerte Prbolic Eqution And Contour Enhncement In Imge

More information

Space Curves. Recall the parametric equations of a curve in xy-plane and compare them with parametric equations of a curve in space.

Space Curves. Recall the parametric equations of a curve in xy-plane and compare them with parametric equations of a curve in space. Clculus 3 Li Vs Spce Curves Recll the prmetric equtions of curve in xy-plne nd compre them with prmetric equtions of curve in spce. Prmetric curve in plne x = x(t) y = y(t) Prmetric curve in spce x = x(t)

More information

1 E3102: a study guide and review, Version 1.0

1 E3102: a study guide and review, Version 1.0 1 E3102: study guide nd review, Version 1.0 Here is list of subjects tht I think we ve covered in clss (your milege my vry). If you understnd nd cn do the bsic problems in this guide you should be in very

More information

The Regulated and Riemann Integrals

The Regulated and Riemann Integrals Chpter 1 The Regulted nd Riemnn Integrls 1.1 Introduction We will consider severl different pproches to defining the definite integrl f(x) dx of function f(x). These definitions will ll ssign the sme vlue

More information

Math Week 5 concepts and homework, due Friday February 10

Math Week 5 concepts and homework, due Friday February 10 Mt 2280-00 Week 5 concepts nd omework, due Fridy Februry 0 Recll tt ll problems re good for seeing if you cn work wit te underlying concepts; tt te underlined problems re to be nded in; nd tt te Fridy

More information

Improper Integrals, and Differential Equations

Improper Integrals, and Differential Equations Improper Integrls, nd Differentil Equtions October 22, 204 5.3 Improper Integrls Previously, we discussed how integrls correspond to res. More specificlly, we sid tht for function f(x), the region creted

More information

Lab 11 Approximate Integration

Lab 11 Approximate Integration Nme Student ID # Instructor L Period Dte Due L 11 Approximte Integrtion Ojectives 1. To ecome fmilir with the right endpoint rule, the trpezoidl rule, nd Simpson's rule. 2. To compre nd contrst the properties

More information

The problems that follow illustrate the methods covered in class. They are typical of the types of problems that will be on the tests.

The problems that follow illustrate the methods covered in class. They are typical of the types of problems that will be on the tests. ADVANCED CALCULUS PRACTICE PROBLEMS JAMES KEESLING The problems tht follow illustrte the methods covered in clss. They re typicl of the types of problems tht will be on the tests. 1. Riemnn Integrtion

More information

Bob Brown Math 251 Calculus 1 Chapter 5, Section 4 1 CCBC Dundalk

Bob Brown Math 251 Calculus 1 Chapter 5, Section 4 1 CCBC Dundalk Bo Brown Mth Clculus Chpter, Section CCBC Dundlk The Fundmentl Theorem of Clculus Informlly, the Fundmentl Theorem of Clculus (FTC) sttes tht differentition nd definite integrtion re inverse opertions

More information

CHM Physical Chemistry I Chapter 1 - Supplementary Material

CHM Physical Chemistry I Chapter 1 - Supplementary Material CHM 3410 - Physicl Chemistry I Chpter 1 - Supplementry Mteril For review of some bsic concepts in mth, see Atkins "Mthemticl Bckground 1 (pp 59-6), nd "Mthemticl Bckground " (pp 109-111). 1. Derivtion

More information

Psychrometric Applications

Psychrometric Applications Psychrometric Applictions The reminder of this presenttion centers on systems involving moist ir. A condensed wter phse my lso be present in such systems. The term moist irrefers to mixture of dry ir nd

More information

Math 8 Winter 2015 Applications of Integration

Math 8 Winter 2015 Applications of Integration Mth 8 Winter 205 Applictions of Integrtion Here re few importnt pplictions of integrtion. The pplictions you my see on n exm in this course include only the Net Chnge Theorem (which is relly just the Fundmentl

More information

2. My instructor s name is T. Snee (1 pt)

2. My instructor s name is T. Snee (1 pt) Chemistry 342 Exm #1, Feb. 15, 2019 Version 1 MY NAME IS: Extr Credit#1 1. At prissy Hrvrd, E. J. Corey is Nobel Prize (1990 winning chemist whom ll students cll (two letters 2. My instructor s nme is

More information

AP * Calculus Review

AP * Calculus Review AP * Clculus Review The Fundmentl Theorems of Clculus Techer Pcket AP* is trdemrk of the College Entrnce Emintion Bord. The College Entrnce Emintion Bord ws not involved in the production of this mteril.

More information

Interpreting Integrals and the Fundamental Theorem

Interpreting Integrals and the Fundamental Theorem Interpreting Integrls nd the Fundmentl Theorem Tody, we go further in interpreting the mening of the definite integrl. Using Units to Aid Interprettion We lredy know tht if f(t) is the rte of chnge of

More information

Chapter 3 Exponential and Logarithmic Functions Section 3.1

Chapter 3 Exponential and Logarithmic Functions Section 3.1 Chpter 3 Eponentil nd Logrithmic Functions Section 3. EXPONENTIAL FUNCTIONS AND THEIR GRAPHS Eponentil Functions Eponentil functions re non-lgebric functions. The re clled trnscendentl functions. The eponentil

More information

Chemistry 431 Problem Set 9 Fall 2018 Solutions

Chemistry 431 Problem Set 9 Fall 2018 Solutions Chemistry 43 rolem Set 9 Fll 8 Solutions. A certin gs oeys the eqution of stte Vm 4 where nd re numericl constnts. Derive n expression for the criticl volume of the gs in terms of. = ( ) + 4 Vm 5 ( V m

More information

Chapter 1. Basic Concepts

Chapter 1. Basic Concepts Socrtes Dilecticl Process: The Þrst step is the seprtion of subject into its elements. After this, by deþning nd discovering more bout its prts, one better comprehends the entire subject Socrtes (469-399)

More information

different methods (left endpoint, right endpoint, midpoint, trapezoid, Simpson s).

different methods (left endpoint, right endpoint, midpoint, trapezoid, Simpson s). Mth 1A with Professor Stnkov Worksheet, Discussion #41; Wednesdy, 12/6/217 GSI nme: Roy Zho Problems 1. Write the integrl 3 dx s limit of Riemnn sums. Write it using 2 intervls using the 1 x different

More information

du = C dy = 1 dy = dy W is invertible with inverse U, so that y = W(t) is exactly the same thing as t = U(y),

du = C dy = 1 dy = dy W is invertible with inverse U, so that y = W(t) is exactly the same thing as t = U(y), 29. Differentil equtions. The conceptul bsis of llometr Did it occur to ou in Lecture 3 wh Fiboncci would even cre how rpidl rbbit popultion grows? Mbe he wnted to et the rbbits. If so, then he would be

More information

any possibly dd stfdf Eds : already it state variable. xy + 7 ulliple ordinary differential equations through form that is a first-order differential

any possibly dd stfdf Eds : already it state variable. xy + 7 ulliple ordinary differential equations through form that is a first-order differential vlued Anlysis dynmicl systems : Dynmicl cn be described either systems ny ordinry differentil equtions ulliple sclr vribles in or in stte form tht is firstorder differentil dimensionl eqution vector in

More information

Section 4.8. D v(t j 1 ) t. (4.8.1) j=1

Section 4.8. D v(t j 1 ) t. (4.8.1) j=1 Difference Equtions to Differentil Equtions Section.8 Distnce, Position, nd the Length of Curves Although we motivted the definition of the definite integrl with the notion of re, there re mny pplictions

More information

Final Exam - Review MATH Spring 2017

Final Exam - Review MATH Spring 2017 Finl Exm - Review MATH 5 - Spring 7 Chpter, 3, nd Sections 5.-5.5, 5.7 Finl Exm: Tuesdy 5/9, :3-7:pm The following is list of importnt concepts from the sections which were not covered by Midterm Exm or.

More information

The graphs of Rational Functions

The graphs of Rational Functions Lecture 4 5A: The its of Rtionl Functions s x nd s x + The grphs of Rtionl Functions The grphs of rtionl functions hve severl differences compred to power functions. One of the differences is the behvior

More information

How can we approximate the area of a region in the plane? What is an interpretation of the area under the graph of a velocity function?

How can we approximate the area of a region in the plane? What is an interpretation of the area under the graph of a velocity function? Mth 125 Summry Here re some thoughts I ws hving while considering wht to put on the first midterm. The core of your studying should be the ssigned homework problems: mke sure you relly understnd those

More information

Calculus II: Integrations and Series

Calculus II: Integrations and Series Clculus II: Integrtions nd Series August 7, 200 Integrls Suppose we hve generl function y = f(x) For simplicity, let f(x) > 0 nd f(x) continuous Denote F (x) = re under the grph of f in the intervl [,x]

More information

Math 270A: Numerical Linear Algebra

Math 270A: Numerical Linear Algebra Mth 70A: Numericl Liner Algebr Instructor: Michel Holst Fll Qurter 014 Homework Assignment #3 Due Give to TA t lest few dys before finl if you wnt feedbck. Exercise 3.1. (The Bsic Liner Method for Liner

More information

21.6 Green Functions for First Order Equations

21.6 Green Functions for First Order Equations 21.6 Green Functions for First Order Equtions Consider the first order inhomogeneous eqution subject to homogeneous initil condition, B[y] y() = 0. The Green function G( ξ) is defined s the solution to

More information

Fundamental Theorem of Calculus

Fundamental Theorem of Calculus Fundmentl Theorem of Clculus Recll tht if f is nonnegtive nd continuous on [, ], then the re under its grph etween nd is the definite integrl A= f() d Now, for in the intervl [, ], let A() e the re under

More information

Practive Derivations for MT 1 GSI: Goni Halevi SOLUTIONS

Practive Derivations for MT 1 GSI: Goni Halevi SOLUTIONS Prctive Derivtions for MT GSI: Goni Hlevi SOLUTIONS Note: These solutions re perhps excessively detiled, but I wnted to ddress nd explin every step nd every pproximtion in cse you forgot where some of

More information

Lecture 12: Numerical Quadrature

Lecture 12: Numerical Quadrature Lecture 12: Numericl Qudrture J.K. Ryn@tudelft.nl WI3097TU Delft Institute of Applied Mthemtics Delft University of Technology 5 December 2012 () Numericl Qudrture 5 December 2012 1 / 46 Outline 1 Review

More information

than 1. It means in particular that the function is decreasing and approaching the x-

than 1. It means in particular that the function is decreasing and approaching the x- 6 Preclculus Review Grph the functions ) (/) ) log y = b y = Solution () The function y = is n eponentil function with bse smller thn It mens in prticulr tht the function is decresing nd pproching the

More information

Math 1431 Section M TH 4:00 PM 6:00 PM Susan Wheeler Office Hours: Wed 6:00 7:00 PM Online ***NOTE LABS ARE MON AND WED

Math 1431 Section M TH 4:00 PM 6:00 PM Susan Wheeler Office Hours: Wed 6:00 7:00 PM Online ***NOTE LABS ARE MON AND WED Mth 43 Section 4839 M TH 4: PM 6: PM Susn Wheeler swheeler@mth.uh.edu Office Hours: Wed 6: 7: PM Online ***NOTE LABS ARE MON AND WED t :3 PM to 3: pm ONLINE Approimting the re under curve given the type

More information

Partial Derivatives. Limits. For a single variable function f (x), the limit lim

Partial Derivatives. Limits. For a single variable function f (x), the limit lim Limits Prtil Derivtives For single vrible function f (x), the limit lim x f (x) exists only if the right-hnd side limit equls to the left-hnd side limit, i.e., lim f (x) = lim f (x). x x + For two vribles

More information

AP CALCULUS Test #6: Unit #6 Basic Integration and Applications

AP CALCULUS Test #6: Unit #6 Basic Integration and Applications AP CALCULUS Test #6: Unit #6 Bsi Integrtion nd Applitions A GRAPHING CALCULATOR IS REQUIRED FOR SOME PROBLEMS OR PARTS OF PROBLEMS IN THIS PART OF THE EXAMINATION. () The ext numeril vlue of the orret

More information

Unit 5. Integration techniques

Unit 5. Integration techniques 18.01 EXERCISES Unit 5. Integrtion techniques 5A. Inverse trigonometric functions; Hyperbolic functions 5A-1 Evlute ) tn 1 3 b) sin 1 ( 3/) c) If θ = tn 1 5, then evlute sin θ, cos θ, cot θ, csc θ, nd

More information

u t = k 2 u x 2 (1) a n sin nπx sin 2 L e k(nπ/l) t f(x) = sin nπx f(x) sin nπx dx (6) 2 L f(x 0 ) sin nπx 0 2 L sin nπx 0 nπx

u t = k 2 u x 2 (1) a n sin nπx sin 2 L e k(nπ/l) t f(x) = sin nπx f(x) sin nπx dx (6) 2 L f(x 0 ) sin nπx 0 2 L sin nπx 0 nπx Chpter 9: Green s functions for time-independent problems Introductory emples One-dimensionl het eqution Consider the one-dimensionl het eqution with boundry conditions nd initil condition We lredy know

More information

The area under the graph of f and above the x-axis between a and b is denoted by. f(x) dx. π O

The area under the graph of f and above the x-axis between a and b is denoted by. f(x) dx. π O 1 Section 5. The Definite Integrl Suppose tht function f is continuous nd positive over n intervl [, ]. y = f(x) x The re under the grph of f nd ove the x-xis etween nd is denoted y f(x) dx nd clled the

More information

1 The Riemann Integral

1 The Riemann Integral The Riemnn Integrl. An exmple leding to the notion of integrl (res) We know how to find (i.e. define) the re of rectngle (bse height), tringle ( (sum of res of tringles). But how do we find/define n re

More information

Section Areas and Distances. Example 1: Suppose a car travels at a constant 50 miles per hour for 2 hours. What is the total distance traveled?

Section Areas and Distances. Example 1: Suppose a car travels at a constant 50 miles per hour for 2 hours. What is the total distance traveled? Section 5. - Ares nd Distnces Exmple : Suppose cr trvels t constnt 5 miles per hour for 2 hours. Wht is the totl distnce trveled? Exmple 2: Suppose cr trvels 75 miles per hour for the first hour, 7 miles

More information

Review of Calculus, cont d

Review of Calculus, cont d Jim Lmbers MAT 460 Fll Semester 2009-10 Lecture 3 Notes These notes correspond to Section 1.1 in the text. Review of Clculus, cont d Riemnn Sums nd the Definite Integrl There re mny cses in which some

More information

2. THE HEAT EQUATION (Joseph FOURIER ( ) in 1807; Théorie analytique de la chaleur, 1822).

2. THE HEAT EQUATION (Joseph FOURIER ( ) in 1807; Théorie analytique de la chaleur, 1822). mpc2w4.tex Week 4. 2.11.2011 2. THE HEAT EQUATION (Joseph FOURIER (1768-1830) in 1807; Théorie nlytique de l chleur, 1822). One dimension. Consider uniform br (of some mteril, sy metl, tht conducts het),

More information

CBE 450 Chemical Reactor Fundamentals Fall, 2009 Homework Assignment #8 Solutions

CBE 450 Chemical Reactor Fundamentals Fall, 2009 Homework Assignment #8 Solutions CBE 450 Chemical Reactor Fundamentals Fall, 2009 Homework Assignment #8 Solutions. Nonisothermal CSTR irreversible reaction Consider the irreversible reaction A 2B with elementary mechanism such that the

More information

Kinematic Waves. These are waves which result from the conservation equation. t + I = 0. (2)

Kinematic Waves. These are waves which result from the conservation equation. t + I = 0. (2) Introduction Kinemtic Wves These re wves which result from the conservtion eqution E t + I = 0 (1) where E represents sclr density field nd I, its outer flux. The one-dimensionl form of (1) is E t + I

More information

Math 5440 Problem Set 3 Solutions

Math 5440 Problem Set 3 Solutions Mth 544 Mth 544 Problem Set 3 Solutions Aron Fogelson Fll, 213 1: (Logn, 1.5 # 2) Repet the derivtion for the eqution of motion of vibrting string when, in ddition, the verticl motion is retrded by dmping

More information

Exam 2, Mathematics 4701, Section ETY6 6:05 pm 7:40 pm, March 31, 2016, IH-1105 Instructor: Attila Máté 1

Exam 2, Mathematics 4701, Section ETY6 6:05 pm 7:40 pm, March 31, 2016, IH-1105 Instructor: Attila Máté 1 Exm, Mthemtics 471, Section ETY6 6:5 pm 7:4 pm, Mrch 1, 16, IH-115 Instructor: Attil Máté 1 17 copies 1. ) Stte the usul sufficient condition for the fixed-point itertion to converge when solving the eqution

More information

CBE 450 Chemical Reactor Fundamentals Fall, 2009 Homework Assignment #4 Solutions

CBE 450 Chemical Reactor Fundamentals Fall, 2009 Homework Assignment #4 Solutions CBE 450 Chemicl ectr Fundmentl Fll, 2009 Hmewrk ignment #4 Slutin 1. Btch ectr nlyi vi nlyticl Exprein Cnider the fllwing imeriztin rectin B with n elementry mechnim uch tht the rte i r kc where the rte

More information

n f(x i ) x. i=1 In section 4.2, we defined the definite integral of f from x = a to x = b as n f(x i ) x; f(x) dx = lim i=1

n f(x i ) x. i=1 In section 4.2, we defined the definite integral of f from x = a to x = b as n f(x i ) x; f(x) dx = lim i=1 The Fundmentl Theorem of Clculus As we continue to study the re problem, let s think bck to wht we know bout computing res of regions enclosed by curves. If we wnt to find the re of the region below the

More information

Chapter Direct Method of Interpolation More Examples Civil Engineering

Chapter Direct Method of Interpolation More Examples Civil Engineering Chpter 5. Direct Method of Interpoltion More Exmples Civil Engineering Exmple o mximie ctch of bss in lke, it is suggested to throw the line to the depth of the thermocline. he chrcteristic feture of this

More information

Quantum Physics II (8.05) Fall 2013 Assignment 2

Quantum Physics II (8.05) Fall 2013 Assignment 2 Quntum Physics II (8.05) Fll 2013 Assignment 2 Msschusetts Institute of Technology Physics Deprtment Due Fridy September 20, 2013 September 13, 2013 3:00 pm Suggested Reding Continued from lst week: 1.

More information

Ordinary differential equations

Ordinary differential equations Ordinry differentil equtions Introduction to Synthetic Biology E Nvrro A Montgud P Fernndez de Cordob JF Urchueguí Overview Introduction-Modelling Bsic concepts to understnd n ODE. Description nd properties

More information

Properties of Integrals, Indefinite Integrals. Goals: Definition of the Definite Integral Integral Calculations using Antiderivatives

Properties of Integrals, Indefinite Integrals. Goals: Definition of the Definite Integral Integral Calculations using Antiderivatives Block #6: Properties of Integrls, Indefinite Integrls Gols: Definition of the Definite Integrl Integrl Clcultions using Antiderivtives Properties of Integrls The Indefinite Integrl 1 Riemnn Sums - 1 Riemnn

More information

Harman Outline 1A1 Integral Calculus CENG 5131

Harman Outline 1A1 Integral Calculus CENG 5131 Hrmn Outline 1A1 Integrl Clculus CENG 5131 September 5, 213 III. Review of Integrtion A.Bsic Definitions Hrmn Ch14,P642 Fundmentl Theorem of Clculus The fundmentl theorem of clculus shows the intimte reltionship

More information

Math 5440 Problem Set 3 Solutions

Math 5440 Problem Set 3 Solutions Mth 544 Mth 544 Problem Set 3 Solutions Aron Fogelson Fll, 25 1: Logn, 1.5 # 2) Repet the derivtion for the eqution of motion of vibrting string when, in ddition, the verticl motion is retrded by dmping

More information

1 The fundamental theorems of calculus.

1 The fundamental theorems of calculus. The fundmentl theorems of clculus. The fundmentl theorems of clculus. Evluting definite integrls. The indefinite integrl- new nme for nti-derivtive. Differentiting integrls. Tody we provide the connection

More information

20 MATHEMATICS POLYNOMIALS

20 MATHEMATICS POLYNOMIALS 0 MATHEMATICS POLYNOMIALS.1 Introduction In Clss IX, you hve studied polynomils in one vrible nd their degrees. Recll tht if p(x) is polynomil in x, the highest power of x in p(x) is clled the degree of

More information

Physics 116C Solution of inhomogeneous ordinary differential equations using Green s functions

Physics 116C Solution of inhomogeneous ordinary differential equations using Green s functions Physics 6C Solution of inhomogeneous ordinry differentil equtions using Green s functions Peter Young November 5, 29 Homogeneous Equtions We hve studied, especilly in long HW problem, second order liner

More information

Calculus AB Section I Part A A CALCULATOR MAY NOT BE USED ON THIS PART OF THE EXAMINATION

Calculus AB Section I Part A A CALCULATOR MAY NOT BE USED ON THIS PART OF THE EXAMINATION lculus Section I Prt LULTOR MY NOT US ON THIS PRT OF TH XMINTION In this test: Unless otherwise specified, the domin of function f is ssumed to e the set of ll rel numers for which f () is rel numer..

More information

Numerical Analysis: Trapezoidal and Simpson s Rule

Numerical Analysis: Trapezoidal and Simpson s Rule nd Simpson s Mthemticl question we re interested in numericlly nswering How to we evlute I = f (x) dx? Clculus tells us tht if F(x) is the ntiderivtive of function f (x) on the intervl [, b], then I =

More information

dy ky, dt where proportionality constant k may be positive or negative

dy ky, dt where proportionality constant k may be positive or negative Section 1.2 Autonomous DEs of the form 0 The DE y is mthemticl model for wide vriety of pplictions. Some of the pplictions re descried y sying the rte of chnge of y(t) is proportionl to the mount present.

More information

COT4501 Spring Homework VII

COT4501 Spring Homework VII COT451 Spring 1 Homework VII The ssignment is due in clss on Thursdy, April 19, 1. There re five regulr problems nd one computer problem (using MATLAB). For written problems, you need to show your work

More information

Definition of Continuity: The function f(x) is continuous at x = a if f(a) exists and lim

Definition of Continuity: The function f(x) is continuous at x = a if f(a) exists and lim Mth 9 Course Summry/Study Guide Fll, 2005 [1] Limits Definition of Limit: We sy tht L is the limit of f(x) s x pproches if f(x) gets closer nd closer to L s x gets closer nd closer to. We write lim f(x)

More information

A REVIEW OF CALCULUS CONCEPTS FOR JDEP 384H. Thomas Shores Department of Mathematics University of Nebraska Spring 2007

A REVIEW OF CALCULUS CONCEPTS FOR JDEP 384H. Thomas Shores Department of Mathematics University of Nebraska Spring 2007 A REVIEW OF CALCULUS CONCEPTS FOR JDEP 384H Thoms Shores Deprtment of Mthemtics University of Nebrsk Spring 2007 Contents Rtes of Chnge nd Derivtives 1 Dierentils 4 Are nd Integrls 5 Multivrite Clculus

More information