You are on page 1of 12

ME 303 - Advanced Engineering Mathematics

Midterm Examination
14 Feb 2008

• Aids allowed: scientific calculator and one double-sided letter-size formula sheet.
Please put all other material, backpacks, etc. on the floor.

• Exam time is 2 hours long (4:30-6:30pm). Budget your time to allow a reason-
able attempt at each of the five questions. If the exam is too long, remember
that your performance will be evaluated relative to your classmates.

• Clear, legible, systematic solutions are expected. Marks may be lost if a marker
is unable to follow or to read your work.

• Note that the marks assigned to each question differ; total marks available =
100

Useful Formulas:
• Taylor series expansion

df (∆x)2 d2 f (∆x)3 d3 f
f (x + ∆x) = f (x) + ∆x + + + ···
dx x 2! dx2 x 3! dx3 x

• You may need this integral


Z
dx
= arctan(x)
1 + x2

dy
• To solve dx
= F (x, y)
Explicit Euler:
yi+1 = yi + ∆xF (xi , yi )

Second order Runge-Kutta:


∆x ∗
yi+1 = yi + (Fi + Fi+1 )
2
1
ME 303 - Midterm Exam 2

where:

Fi = F (xi , yi )
∗ ∗ ∗
Fi+1 = F (xi+1 , yi+1 ); xi+1 = xi + ∆x; yi+1 = yi + ∆xFi

Fourth order Runge-Kutta:


∆x
yi+1 = yi + (Fi + 2Fc∗ + 2Fc∗∗ + Fi+1

)
6
where:

Fi = F (xi , yi )
∆x ∆x
Fc∗ = F (xc , yc∗ ); xc = xi + ; yc∗ = yi + Fi
2 2
∆x ∆x ∗
Fc∗∗ = F (xc , yc∗∗ ); xc = xi + ; yc∗∗ = yi + F
2 2 c
∗ ∗ ∗
Fi+1 = F (xi+1 , yi+1 ); xi+1 = xi + ∆x; yi+1 = yi + ∆xFc∗∗

• Second order central approximation to second derivative of function f

d2 f fi+1 − 2fi + fi−1


=
dx2 xi (∆x)2

Question 1: (20 marks)


Consider the equation x = 2 − e−x . In all the below calculations keep 4 decimal
places.

(a) Use the graphic method to determine the number of real roots in the interval
−3 ≤ x ≤ 3 and their approximate values. Show that one root is near x = 2.

(b) Using the bisection method, solve for the root near x = 2. Use xlow = 1 and
xhigh = 3 as the initial guess and demonstrate the procedure by completing
three iterations. Copy the following table into your exam booklet and fill in the
numerical values indicated.

iteration xlow xhigh root f (xlow ) f (xhigh ) f (root)


1 1 3
2
3
4
ME 303 - Midterm Exam 3

(c) Newton-Raphson method could also be applied to solve the equation. Write
down the equation that would be used to find x. Demonstrate the process
by completing three iterations starting with the initial guess, x = 2. Copy the
following table into your exam booklet and fill in the numerical values indicated.

iteration xold f (xold ) f ′ (xold ) xnew


1 2
2
3

Question 2:(15 marks)


Note: The Taylor series is given on the first page of the exam.
Four unequally spaced data points are measured in an experiment, as shown below.
f
f2 b

f0 b

f3 b

f1 b

∆x 2∆x ∆x

x0 x1 = 0 x2 x3 x

We want to estimate the second derivative at x = 0 by developing a finite difference


formula of the highest possible accuracy (i.e. smallest possible truncation error), given
that we have these four data points.
2
(a) Derive the finite difference formula of the highest possible accuracy for ddxf2
x=0
for this situation by writing appropriate Taylor series expansions. Keep suf-
ficient terms in the expansion to also derive an expression for the truncation
error term.

(b) What order of accuracy is the derivative approximation of part (a)?

Question 3: (25 marks)


Note: Euler and Runge-Kutta formulas are given on the first page of the exam.
Consider the following first order initial value problem.
dy
= (x + y − 2)2 with: y(0) = 1
dx
ME 303 - Midterm Exam 4

(a) Apply the methods of calculus to find the exact solution, y(x), for 0 ≤ x. (One
approach: assume z = x + y)

(b) Apply the explicit Euler method with ∆x = 0.2 to estimate y(0.6) numerically.
Show all calculations step by step. Summarize results in your exam booklet in
the following tabular form, which follows the notation in the lectures.

i xi yi Fi
0 0 1
1 0.2
2 0.4
3 0.6

(c) Apply the fourth-order Runge-Kutta scheme with ∆x = 0.6 to estimate y(0.6)
numerically. Show all calculations step by step. Summarize results in your
exam booklet in the following tabular form, which follows the notation in the
lectures.

i xi yi Fi yc∗ Fc∗ yc∗∗ Fc∗∗ ∗


yi+1 ∗
Fi+1
0 0 1
1 0.6

Question 4: (25 marks)


Note: Euler and Runge-Kutta formulas are given on the first page of the exam.
Consider the following second order initial value problem.

d2 y
2
= x + y3 with: y(0) = 1, y ′ (0) = 0
dx
(a) Reduce the ODE above to a set of two first order ODEs of the form,
dy
=F
dx
dv
=G
dx
and determine the initial conditions for y and v. What are the functions F and
G here?

(b) Apply the explicit Euler method with ∆x = 0.5. Carry out two steps of the
process and find y(1.0). Show all calculations step by step. Summarize results
in your exam booklet in the following tabular form, which follows the notation
in the lectures.
ME 303 - Midterm Exam 5

i xi yi vi Fi Gi
0 0
1 0.5
2 1.0

(c) Apply the second order Runge-Kutta method with ∆x = 0.5. Carry out two
steps of the process and find y(1.0). Show all calculations step by step. Sum-
marize results in your exam booklet in the following tabular form, which follows
the notation in the lectures.

∗ ∗ ∗
i xi yi vi Fi Gi yi+1 vi+1 Fi+1 G∗i+1
0 0
1 0.5
2 1.0

Question 5: (15 marks)


Note: Finite difference formulas are given on the first page of the exam.
Consider the second order ODE from Question 4 with two boundary conditions.

d2 y
= x + y3 with: y(0) = 1, y(1) = 1
dx2
(a) We want to solve this boundary value problem using finite difference method.
Demonstrate how this method works by carrying out the following with ∆x =
0.25.

• Consider the ODE at the point xi .


• Substitute the second order central difference approximation into the ODE
and find the finite difference form of the ODE.
• Apply the finite difference formula at x1 = 0.25, x2 = 0.5, and x3 = 0.75
and form a system of equations. Do not solve this system.

(b) Can you write the system of equations, obtained in Part (a), in the following
form? Briefly explain your answer.
    
y1
   y2  =  
y3
tlE__-aD3 t1;-~HeP1\- -------------------------- --
--E?aae- Jl--~-
1-- -- -------------- --- -----------------------------

~.es:fiQ t'I " &~--:x:.-=-~~---~ - -~ ~-- ---

-~--- - ~ ~-- ------------

-~___£CtfJ:_--\.a.}- - G-xo.ph"t-c roefbd ---,,---+ +_h u -----


- - --- u- ~~-- - -0 -~-----------------

-)I,. -X
--~-- - ~ e =~--=--2--)( \-~=-~ ------------------------.-------------------
u --- U m
e-y. y- ------------------------------------

---h__JJ.J..lC-_-wo.ts--,---D-I1e-.-t1eO-r::--'X.=2.--- ----------------

- --,-- -_u_- - - u ~ --------

Bv:t-!-b.) J3.i.se:.JioA---m.e-thorA f O<.l-=--e!+-x-"..-2.- --


U U U_------------- - ---------------------
, -I
---, If:.e.y-Qf:iO()-L: X1Ow
-C---:' --., -i IVlc---)-~ L '__~ - -11 63'> I
~ ~IOW -, , '" ---J-----------------------------

h -3 ! -l_X'-:m._L;.;e.-- -3
- ~---, -L..,4..-- 2. - -
--~-- - _x.-.
~-fj/~
~-- ~'J,d r---
'J_2.- ~
-L-a/_'2Q.---
-~ --- -----
1'.00/- -/V.
~~---r-
L
""9~"
'\ / "'--=-2---:::::1::00+
-
~ I
,
,.., I':>,- '>
'-'--~~-----
~--'-'x. - }.£ ( ~' '- ,.. --~ )l,-, ch---A..- a._-------
"70W , , ~"""9n ..,..,..,--
-+vw-I' ~ -- -------------
-- -- -- u-----------------------------------------

-~ jJera.&n._2.: Xrow-=L_--",,:;:.._£{~w-}-=_~..9-,-6...32._L_~ ---~---------------

~9~~ =9--kxnt1h+--=~.-L35_3 - ~ ~------


r -1-5
--~ --- rocd:-=-(~~2.}-t.2..-=---I-~S--~ -T:.C-CbOtu)-=-e t,J-.s_-,=-2-= o~!l4-6-q ~---

---,- ---~-_u Wt"v;rJ--=l.(LDO.t-J-'>-o-- ~---4-oW-+-~ u.--------------


-- ---------------------------

'.L l' ":!. . r


I--,-,r~tO.n-.;L XtC1W=--I~--=r--T-{Xt0w4--~~-2-U.q ~- -~ ------------

_h' --- --J{h,gk-=-2:--==-';>o-f-(~~-=--o--L3.S~- ------------------


-I,?':)
-~ _..mof.-=-(-2-+4-S-)1.1 =-I~~s ::.,>-£l'fiWf.)--~ +L'3S=2...:: -L2...ll.3.6.12----

f-(...)<.fow+ 4(~~..Q--~f71W-~-~ -- ---------------


u ---------

-,- X.QOt--=--l.'2..,-I---:1--SJ-I--2..- -:- f---&.K+ ~- ~ -----


--~ ~---------------------

...ile.raJiA.t1 Xtow uy~ ~ 1{4ov.r} f-!J<I')7sJ,-) J+liJ()L}___-


-- 1 L -~ '2 ~~12t Le4go {),-t3-S--3----
---1 2 L 2 ---1-.-$' Q,.b3.1I o..i35..a ~ =-D.T16 ~----

--h. 3 J._~- --- --2 ---L3S' ---d).2.-=1£'l oJ3.~~ ~.o ()\:f~ 22.___-

~ 4 l-~s: 2 u § ---------------------------------
f1£,3o~_~_Mid:1eLn'L-___-- --- ---~-- ------
- ~ ~-E~-fLt7l--

- ~--- ~ --- --~----------------------------- ----

-,) -x "-x
j:>Q£J-(..c+--_NeJJJ_:/fll1~.sme:I1U:Jd ~f1-x--J-=- _e.. --t--X 2 =;a--1-t.x.l-= e ,I --------

--+ n__- ~----------------------------------------

fO<ol d ) u ---
-,--_Xne/iJ-=-_XoIQ ,I " -Xold

-~ ~
r(Xold) ><-old--- e + Xold
I -e'told -~ ~----

-. Jlercdi.o.n-~ ~dq 1<-X-otcrt JJXCJllt-) ~-e.wu-_n__- ----------------------------


-- L 'U3-53 ~<L.2i641 ,~g.Lt3S -------------------

2.-- LX4-~S--- ",Q-.flDf.U-:t Q...8-'1L 1 -- L 'i4/4r- --- ----------

~ L8-Lt-Ut-- -'=-?-.-4-lxti-'5 O.-8ltL4 tJ-.8-4-'-4-f-C--- --- --- ------ --------------


-~ ~ --- --- ----------

-~ -- --- -- - -- ---------------------------------- -- --u -----------------

Q-lAe~.ft-O--n-2 -- - 4 -- ------------

...~ ~~-m~--~~~
u
+00
L
._-=~lm
------
... ~-=~~~m~ -f3~~=-=~- ------
=
I
--
;.. AX-- 2~ ~ I
~-~~ ------------
1
-------------

--,- --
Xo= - ~y.
u_- --
X,; 0 -
u -----------
i-z-:::.Z6)\. X3",3bX " -----

--- --- ---~------- --- -- nU -- -----

-£.nL_J-he._-fflosl_-oc.cCA ra!.e..lat::mu.k.LJ:ot' d2~-t-- - - - ------------------


<h.l X::.O
-------------

--~---JtJe-need -+o---use CtlLpoint~~-p-__aa:~.clo-.abfa.io..:I::he__Mo,d---<lccut:Qte.-.f'o.f'.m~---


--- --- m-_____----------
I 2.."/ '3 ~N Lt NIl

---~--;--fr-~-A){'~- -t ~. f, -- ~. -{ .
r--- A:I-4 + ~ @ ~

-. ~ ~~X2 ---~--;~;3 -- -~~;--~6--~~Li--~~~ --------


_4--~--=-lc+-2~f, -t :2,. ! r--- '3 I0 t, -1' - 4 I, ---f +-+o @-----------

-~::_--~f,>=f.:~~J~--q~~--~~--;;~-;3~~~~-;-~-~;'t~~~/~:~:~-~=:=-@=~=--==--=~
.;) I I 2\ . I 3" 0 la\. I

-- -- -- /---;-- --, -- --- --- -~--------------

-~-.:dg.--:Oee dto---iSolafe- 1r ---=--- df


d)\. b)(:0 ------
- -----------------------
-+ - --- --- - --- - -----------------------
/ //"

-+ --We-.1-.ave 3-.e1os---=-->-_-weC4t\ eli"';4Q.l:e £, --.anci--- ff---~ --------------------------


--~o3-_-11idfe.r:D'L -~~~ RJae-3.J-*"-

-- - ~ ------------

-
j-dC.--~
~.ftJ.JDQ i'. °9 -£r"':
/
~--

--- ~-+ ~ - --- -----------------------------

----~-@-+-2-*-<9-:--- - f --+ 2
2
f=
0
"3f , -T 606)(
21.
£--+
I
2 //
6 Ax
3" .
3
-f
",I,.
j- I
~
6x
4' .
4 /.1.1.1
f---r---"-"'--
I ~
(4) ----

- ~-- ---- ~-----------------------

2. ,I... 3 /.1/ 't 'w...


---~3J-1-3-*:-{f):.- --4.-+--~Jo--=-4--f: 1--+_126.X
'1.!'
--i-uT 24 A)(. ---f,
'3~
r-_84 AY.
it!
--.£ +~
I
@
__5 ---
~ u- -- - - -- --- ~~----------
,.//

-. __EQ_c_--elirni-ncJ:LaJ -Jr--_:- _u- --- --~- -- ----------------------

_a- - ~ -- --- -- --- ----------

~ 2~ q~
--~~---4--*'-@-:---~~-4JL---s-4r =--~-K~- 12:~ .l:f--+ ' ~ ~~ .£i~---+-»"" --------
--~ - -- --- ---~ ~--
//
. 1/ .£'
- L5£J.J.Q,-e-- T~- -------------------

-------------------

<11J ---- Sfo -g(, -rLt{1. -f3


-
--I'
1f
/.1 =
d ]f. -"x-=0 bAXL rr ~/2. 2. ",,"/ ~~ ~ -----------------
-
----- ~----------

--+--~ ---~ -_£~k d;fw£11~- -fMmlAl-'( u_-----------------

- -- ------------------

a.t:L'b) er~-1et:.m- oc 1.X-1:.-=>~fhod is reaJnd-!:laJeL__- -~--- ----------------

+ -- ~ --- u_-- - --- ~ u ----------------

---~ ~uesl;oo_3___~ 3-~IluL ~;-=- -Crx+!:l-_2)~ uJifh---Jj1_0)'; _I-_m u ---------


- -------------- u ---- -- -- -----

m&rt--fQ.)-e.l<act _saL«:fioL1-, ------- -- ------- -~ un -------------------

- u n- --- -------

d'i: d:l 2 1-
- --<U.Sum-L L:. -x+y ---=> <Ix
=--t-+~-~-+--
dx
(-X--t---~---2.-}- -:--L-t--C ~",-2J ~- ---------------

< ~ -- ~ ----------

---~--_sepa{ate.._:.--f I+ ~:- '2)Z-_=-fdX___~(.jf'-'#&" (r.- 2_}-;-'X-+~,>-_L:. 2+JaQ._{X-t-c_.)---------

=~t~: ;-;:~~-~~~~~~~~>+g~
-~}-~+2I~_n..~~~=~--~~ .nn_.. -.

;?pl-y_IC:_-~(Q)-=-L-?-f.4.n--to-+cl-=-Q+2--=-~G.4-2 ::-I---~-~--l--~-? C$' ~._----

-=~~-: tH~nlU1(~~~ ~-:n::=n==:_~=--nn-=-:: ~:~: .~~n=~ -n~


ME.-'3-o-3-~_J:1icileltlL----- J!~4J-4--
T --- -- ----

-~ EbLt--!-b-}---E;tpnciL_..£ulec_J1]£lbc:L-uJ ith-A.)(;-O.-2----------------------------

- ---

-- ~~ =---(x+-':J-~)..~ -_'::; &'+T=-&f-+-6)f..E,~--=-'4i--+-AX-(-x;-+--':li-=-4-'- -------


~--- -- --

d--en:d:.io_rL ~ Yf ~--E;
1-
¥,~ ~----

'L o L (-0 k2-)...: l I-t-o~2(J J-=l..2..- ----------


'2
L- Q~2 L2 C12..2+/~h4-: cJ-3b L.2.-+a..21a.36.).=-423.2 -----
~ \-
-~ 2 -LJ+4-- --- J 21~___~--(..oA-+L.Li2",-L}-=a..J036 L2.:12-t-a..2.(Q_IQbI=_LLC[~__-

- ..~ -3 'LL j .2935---1.0-_6-+_/L29.35.~2)~cJ.D1J311--,.2qJ.5'-+O.2(.a.lJ1134)-:.L2S5A-

~-- ---

=~-'. 1~~XW~gF-~~---~. - -:--=~---~~ :-


- -, --

---I_f?QLf_.(4 4t:b---~c:- . RU f\Se.- 1< I.{ ""-<'4 -.- ------------------------------

--. -- - ___T ---


, 1-
---~A~-;;:-I- ~o-=--L Eo -.;::---F(-xorYo+=-.{Xo+ro--z-}--=-C-o-+I--=_2}-=__I u- - --- -- --
- --_u --- ---------------

It Ay. - O.6 ,If- If . ~ < 2-


---~ -- Yl--=--Yo-+---T-J:-(J-; J...~{J),=lr~--~- ::..-f~-*YG- -2-~-Or3+ 1-~"".2-)-=-(W/)---
=E.(-Xc-~-Yc:--)
--- -~ -_u ----

**- A~ *- 0,6 - 11*- ltit-- 1t~ 2.- - '2- ,


___UT'
--*-~_v._-+-~-
C. to 2 _J T ~ (.n_I6)_:U..Q"2 £C---""£(-XD*-}~(
G... ~~-1'r--=2-)-.=c(L:43--r-,-.m,&-l)-
-X1.1,2
4 -- n --- -- - ---------
'* ---It *-.. L
--. ~-- =-Yo
-rA)C..F-cc--.:-_I+-(2~-<-O-41.5t)---=-l.ZS-5L ~-=-.£<-Xpy,~..( .ll.~6.+/~2S-'5..I_" '2..)_--=-Q..Q2.o.L ------
- - , -- n m_- -- ------

- A'J( * *1t ..,.\


--, ---Y--i-~*o t-7--
(--~-+2.Ec--+-2--Si +J;---I ~---------
-----------------------------------------------------------------------------------

--, =L-+- °; b -[L-+_2(_CLJ6..l--+-2.C--o.--4-2..S-Jl--+-<J ..a2atj-_= 1 2+q.Q---------------------------


_n_-- ---------
~-----

+-
---,--- t (h..6-)=/-2./M. - --
--- - . --- --- --- --. ---- -----------
----
~393.~er:rl'!--~ ---- -P~~3--
-- -- - ~- - -- --- ---- --- -- -~- ---
I
_Q~JjOD---4- -~ - ~ d2.j
d y.2. - 'X+-'j- -
3
JAJitk
!jio) - I, )L-C-o-i-=-a--
------

-. -- --- - --- - -----

j2a.l1_tQ.}~-a..sSU~=--d ~- -~- - --- -- ---


d>,
--~- --- - -- -~- ----- -- - ----

- .- - -~-=-V -=-'">- f(x/'Y-r\l)-~-- --- ~L* -' -----


~~ --- -- - - ___~n~!iQt~cL-
dV' ~ '3 /,(
- .- -- ---='- -=1-t-~-=-~ bL~J~~" }-=-~-t~ --- --vLo-)-..;-y-(..a._)- =-0- -- ----
d)(
-- -- -- - - --- --- --

-- - . _-ih(-LU:;~)- -E)( plu:it~e.r i!}rlho-d-_- - -


--- -- - ------

--- ---- - -- -- - ---

-- -~~ -=--£ ='> ¥i':':,"= Yj ofAX Ej --='>--Yr+1


-:- ¥j -1 AXVi--@ - --- ---
- - ---- -- --- --- --- - - --
3
-~-~--
dv
4)(
- L ""'- ')t.
~
-v'.
T;
I\.~-&.:.
' ~v.=---="'-' .1\.'11.1_<:'1'-,-\.I. \
~-'o,. '-'-JT1 ;:;'--
-\!::)
------

--- - --- - -- --- --- ------- ----

'Xo== 0 -y. -= Yo+AX.v.,,--= I+-!L~\-=-L- -- -- - -- -- ----


-. ~o..;d-~ -=)0 - --- --- - -- -
- 3 3
Vo=0--- 1 v-{= llo-1"-A).{-lCo+Yij-+-=-0-+ 0 .-5(0-+ '- ) :0.5 ----
-. -- --

~,.::.o~5- - -Y2~ -¥,-tAX \lr =-L-'1'- O. '5.(OS) -2- L2.5: - - - --

:,~-D~ '. :."2 ~ ~,+A'~-X":#~-~,S


~~Vl.S+J3¥ =,.~S-~~ - . ..

-.-- -- -- --- --- -- -------


'
1'£t"GlHO-rL-
L' . tl . . £ 8, L 3
-~ -- -cx.,.-- iI-r - -" t - -1 =-v,- - u-i-= X;+¥i-
---_-.tl_-- -- --- -0. (L--- --- '- 0-- _0- --- --- - L- -- ---

I -- - -- 0..£ J - - 8.S- (L-~- --- --- L.S' -- -- - --

L-- -- -1,. a.. 1.2-5:: --- -- -- - ----- -- -- -- - - --- --


- _-t1f_3Il~-__ti.~clJ~rm ~ ~ ~ --~ 1?-4tJ€.~/-~---

---I ~ ~------------

,-- --H:U:L.1c.}---2ruL-1Jttl.eL-.RLi f"lSe J{uk~ ~ ~--------------

-~ ------

- dy "" F =-", y. - '!J. - l\. V r -E' . 1:."\ 1 ---


d)t ji~/r+- -2t r+-'-r'fr-j- --

. _-
d
m_udr. ~---'
v L --- \I.
¥-H-T
--

- 'IL~ - J\" (.
l ~ 6;
--
~ &::' --'
'-n
,T
--

- -------------------------
----------

------

!
~_D - -~~-- ~~~4~~~~-~~~~~-
--~

__m'
- --V~
----'10--=- -='>

Go--=-~1'"-->k-=--J
'3
E ~
~-
-~

~---=-_\lj,+A.us-u--=--G2-+~S.)I.::;_-o..s:-.-=>--6r--=)<ty,
= L5--
*"
----------
~3

--~--- ----- ----

-~_.:zbE.telor£.-: y,-=-+ot-¥f-Eo--+-E, «-l-=--~0 '1-Cl,St=-L.J2S =;>-/-~ 1.12 ~ -1----


-- - ----------------------------------- --- ------

---~ -~')L_:-Jl
-/ O~z.
.~ t:
. /'- ~ 1__':.-0--+4 c f,
r--&.-o-1"l~ -z:t:o
L '-..5-1
r:r-
- -_t2...~-"",...
1- - a .~--+-----
"'--1-/
62. c- 11

-, -------------------------------------------------------

11-

--~

--~
-

__y,~.6
1,-="

~=::::
.-*
-
t
~
;;.>

~
-
-"""-,,.G2S. -
...£1 ~tt-Yi-=-d;;..-l;J2Lt-"
~--------------
--4*~
3
=>--Vz =-v,-+
'r
-YI+Al<Jj~
~ x6, -D I.-62.S-+
12!> (0.5-)-1.-_92-'.,
S)J!L6LO;"
-- --
'43& - -
-=L.5n------
---------------------------------

,(0.
~ ---
...--

-------

- 1:::~'I-~-1.--'S~~ -------------------------

,- ---; --;-3- -- --- -- ~ --------


~ =--Ae -+-1:---
2: -=--3.-43:.0--- -- --------- -- -- --- ----

-u ------------

~-_1:here10d /'Y--=-Xr-+~-£r+~t-= I../25"+_0.. 2 S ~Q~62S-t_L.SUJ=_1 638-0-___----


-- ------ - -----
.. ~ ~ ~ +
- --(. r~-~)( ; ¥f "'-; E; ~-- -'/r+, -.'\If:tr £j~f 1rr..lu_-
- --, Q- _0- L_~__Q. Q 1 L -- -- 0_.$ 0_£ 1-,,5--__-

___m'
--_1___Q.£ J---/25" O~62_S-__Q 62S _LEl2.~_--t--438 J,,-SL~ LS1Lt 3-4~---
2.-- I~.o-- -_u_--L_.6-l8o -- i---

u_- -- - --- -----------

---~-------------------------- -- m__- ---------- -- --- ------------

'" --------------
---,~-f!lE-~3Q~-_Jii~tet)l'L - --------- ~_m- -- ~_JljE.--31-*-_--

~ -- - ~ --------

Q.ue.sHoa.--5 gif.en_- - d 2y ._;-'X+-~ *,o+=J--r---~.L)-;::: l_--c- -- --


d-;r'
, ~ - ~ --- --------------

cJ2:! I
--r-- - ~ , - 2':1i +:if-,
dx' )<.j ~x2. 'm- -- -- u_---.----------

L ~ ~ ~--- --.------

~-Sj,Abs£b.Je..~k.L__. ~"'H -?:J; + ';;I


i. , 3
- )(;+-'::J+~----
-----------------.---_.

AXl
,-,--'-' ~-'-'--' '--' --- ---.----

-- ---~ : *,-2-~I---r-~~~,-~J-~~-=---{AX0X;--~
.- --.-------------------

~ ~'---'-' 3 ' =T' ~------------

-- ,.y".,'f=-a..LS:~-::Iz:--~2.~,-oT0k2~i---+~=(.QA.625') o. '2S" J -~ ~-
m_' ~ ~ --~~ , ~---

---~~S_-:--~.3 2Ml ~O 061~:J:~-=.-C..o~(}b?'5"lJL~_~ L ~_~ ~~ ---

---= '-~--3 - T:.'; 2 ; ~ %.. --

~3-~~&-2~~ - Q.c62S-.j.3-+~{O-Oc625.)-D..-1-s: ~~L~ ~~ -~--


---~ ¥q=! ~ ---" ---.------------

--~- --~ ~-- ~-~--~-- m_____-


3
-~--i--'h--2.;11 0-0-62.S-~---=---=--o..-~Ut ~-----_._----
-~--- - m_-- --'7 ~ ~ ~ , --------------

- ~__m_- _m-
~3-__2~T~~0..6.2.5-~---4 ~1=-a...O-3L2 c- - m_m ----.-

---'~--' ~ ~ ' ~ ~ --------------

~
---~ ~--=Lj~-D--~;13--+~-"2 --",-'I'~--_'_' ' c +___m .----

---~ ~ '--'------------------

---r Part l.hJ ~e Cannol-IAf';+~_Jhe..~_~~_m LQ CJ..Jf}rAtr3 }!.Jm::m..--------


, ~--'-' '---'--'-------------------

_m ~ be.roJAS..~.iT'
, L' r
--U i\..Q.0- If\!~ f" .- _.-UK.~f
TL- 3
UCm.__io..i_~_t-in.~--
h ('. J~
------
-'--~ ' ~-- --------

---------
-+ .-d:,--:~r:en.c.(L___fD1:m.._i.s_..tbe.-~~n.n..~:fQC__YJ!Lrt(!~ihl-~

You might also like