ࡱ> f%` bjbjNN 8",,gK(  ooo8(pqL sx(xx@y$hf ŕT x@y^>@xp @yGl @yr ="o/*t0tݨtTt Le6,Ǡ*^   eo$   o    SM242 Week 1 (Notes based on Epp Text, Chapter 1) I. Logic Are there "rules" or "laws" that govern proper reasoning? Can we prove, mathematically, that a particular argument is valid? To what extent can reasoning be automated? 1. Statement (proposition): a sentence that is either true or false, but not both. Example. Determine if each of the following sentences is a statement. a. 5 + 3 = 7 21 / 7 = 3 c. MIDN Miller is President of the United States d. Ah,the joy of SM242! e. He is a midshipman MIDN Avworo has written C++ programs. Baltimore is the capital of Maryland. h. 3 * z < 9 i. Every even integer greater than 2 is the sum of two primes j. This sentence is false. 2. Compound Statements: a more complex statement composed of simpler statements. The truth-value of a compound statement depends on the truth values of the simpler component statements. The component statements in a compound statement are often referred to as statement variables. A compound statement usually consists of statement variables joined by logical connectives. 3. Logical Connectives: Not (negation) Mathematical symbol: ~ ~p means "it is not the case that p" where p is some statement. Other notations:  EMBED Equation.DSMT4 ,  EMBED Equation.DSMT4  C++ notation: The negation of a statement has the opposite truth-value from the statement. If p is true, ~p is false. The definition of negation is displayed in a truth table  p ~p  F T T F And (conjunction) Mathematical symbol:  EMBED Equation.DSMT4   EMBED Equation.DSMT4  means it is the case that p and q are true. C++ notation: The conjunction of two statements p and q is true when and only when both p and q are both true. The definition of conjunction is displayed in a truth table  p q  EMBED Equation.DSMT4   F F F T T F T T Example p: MIDN Berrios is an officer q: MIDN Berrios is a gentleman  EMBED Equation.DSMT4 : Or (disjunction) Mathematical Symbol:  EMBED Equation.DSMT4  Also called "inclusive or" C++ notation: The disjunction of two statements  EMBED Equation.DSMT4  is true if either p or q is true, or if both p and q are true. The definition of disjunction is displayed in a truth table  p q  EMBED Equation.DSMT4   Example p: it is rainy q: it is cold  EMBED Equation.DSMT4 : Exclusive or Mathematical Symbol:  EMBED Equation.DSMT4  , XOR  EMBED Equation.DSMT4  is true if either p is true or q is true, but not both. The definition of exclusive or is displayed in a truth table  p q  EMBED Equation.DSMT4   Precedence of logical connectives Negation has higher precedence than conjunction( EMBED Equation.DSMT4 ) and disjunction( EMBED Equation.DSMT4 ). Conjunction and disjunction are usually considered to have the same precedence. Note that this differs from the C++ high-level language, in which conjunction has a higher precedence than disjunction. Example: ~ p  EMBED Equation.DSMT4  q is performed as Parenthesis can be used to override normal precedence. Example: It is important that we use parenthesis to avoid ambiguity Example: Consider p  EMBED Equation.DSMT4  q  EMBED Equation.DSMT4  r . Is this (p  EMBED Equation.DSMT4  q)  EMBED Equation.DSMT4  r or p  EMBED Equation.DSMT4  (q  EMBED Equation.DSMT4  r) ? 4. Translating English into symbolic logic statements Example Let p = It is chilly and q = It is overcast . Translate each of the following compound statements into a mathematical statement using symbolic logic. It is not chilly but it is overcast It is not both chilly and overcast It is neither chilly nor overcast Example Let p = 0 < x , q = x < 2 and r = x = 2. Translate each of the following compound statements into a mathematical statement using symbolic logic, given that x is a particular real number. x  EMBED Equation.DSMT4  2 0 < x < 2 0 < x  EMBED Equation.DSMT4  3 5. Assigning truth values to compound statements We know the truth table for p  EMBED Equation.DSMT4  q and s  EMBED Equation.DSMT4  r. But what is the truth table for a compound statement, such as ~(p  EMBED Equation.DSMT4  q)  EMBED Equation.DSMT4  (s  EMBED Equation.DSMT4  r)? To develop the truth table for a complex statement we must consider each combination of truth values for the component statements. Example: Write the truth table for ~ p  EMBED Equation.DSMT4  q Start by making columns for p and q, considering all possible combinations of true and false.  p q  Now, use the definition of ~ to write a column for ~p. Then, write a column for ~ EMBED Equation.DSMT4  using the definition of disjunction.  p q ~ p ~ EMBED Equation.DSMT4   Example Write a truth table for (p  EMBED Equation.DSMT4  q)  EMBED Equation.DSMT4  ~(p  EMBED Equation.DSMT4  q)  p q  Have you seen this truth table before? Example Write a truth table for ( p  EMBED Equation.DSMT4  q )  EMBED Equation.DSMT4 ~ r   6. Logical Equivalence Two (compound) expressions are logically equivalent if and only if they have identical truth values for all possible combinations of truth values for the sub-expressions. If A and B are logically equivalent, we write  EMBED Equation.DSMT4 . (Another notation for logical equivalence is  EMBED Equation.DSMT4 ; that is, if A and B are logically equivalent then  EMBED Equation.DSMT4 .) To test if A and B and logically equivalent, construct truth tables for A and B. If the truth values of A and B match for all rows in the truth table, then  EMBED Equation.DSMT4 . Example: Are p and ~ (~ p) logically equivalent?  p ~ p ~ (~ p)  F T F T F T   Example: Are ~  EMBED Equation.DSMT4  and ~ EMBED Equation.DSMT4  ~q logically equivalent? p q  EMBED Equation.DSMT4  ~ EMBED Equation.DSMT4  ~ EMBED Equation.DSMT4  ~ EMBED Equation.DSMT4  ~ EMBED Equation.DSMT4  ~q  F F F T T T T F T F T T F F T F F T F T F T T T F F F F   7. DeMorgans Laws Example. Show that ~( p  EMBED Equation.DSMT4  q)  EMBED Equation.DSMT4 ~p  EMBED Equation.DSMT4  ~q   Think about this equivalence. Does it make sense? Consider the compound statement: MIDN Mincks is 20 years old and he is in the Navy. For this to be true, it must be the case that it is true that MIDN Mincks is 20 years old and it is true that MIDN Mincks is in the Navy. Now think of the negation of this compound statement. For this to be false, one or both of the parts of the compound statement must be false. So, the negation of MIDN Mincks is 20 years old and he is in the Navy is We can also slow that ~(  EMBED Equation.DSMT4  q )  EMBED Equation.DSMT4 ~ p  EMBED Equation.DSMT4  ~ q  DeMorgans Laws Example: What is the negation of the statement: It is cold or it is raining. 8. Tautologies A tautology is a statement that is always true. Example: Consider  EMBED Equation.DSMT4 ~ p  p ~ p  EMBED Equation.DSMT4 ~ p  F T T T F T 9. Contradictions A contradiction is a statement that is always false. Example: Consider  EMBED Equation.DSMT4  ~ p  p ~ p  EMBED Equation.DSMT4  ~ p F T F  T F F 10. Summary of Logical Equivalences (Text Chapter 1 page 14) 11. Using logical equivalences to simplify statements We can use the table on page 14 of the text to simplify statements. Example. Simplify the following compound statement: ( p  EMBED Equation.DSMT4  ~q )  EMBED Equation.DSMT4  [ ( p  EMBED Equation.DSMT4  q )  EMBED Equation.DSMT4  q ] Applying the Absorption Law to the right side (the side in square brackets), we have: ( p  EMBED Equation.DSMT4  ~q )  EMBED Equation.DSMT4  q Then applying the Distributive Law, we have: ( p  EMBED Equation.DSMT4  q )  EMBED Equation.DSMT4  ( ~q  EMBED Equation.DSMT4  q ) Then, using the Negation Law, we have: ( p  EMBED Equation.DSMT4  q )  EMBED Equation.DSMT4  T where T is true. Then, using the Identity Law, we finally have: ( p  EMBED Equation.DSMT4  q ) or, since parenthesis arent needed, p  EMBED Equation.DSMT4  q. Example. Simplify the following compound statement: ~(~p  EMBED Equation.DSMT4  q)  EMBED Equation.DSMT4  12. Implication We want to be able to reason from a hypothesis to a conclusion. We want to be able to say If p is true, then q must be true. or, more compactly if p, then q. 8 9 This is written symbolically as pgq. This is also called a  conditional. A. Examples: If MIDN Collard is a midshipman then MIDN Collard is in the Navy. If x > 2 then x > 0. If snow accumulation exceeds 50 inches then classes are canceled. Truth table for pgq.  p q pgq F F F T T F T T Suppose I tell you,  If you have a 95 average then you will get an A.  hypothesis conclusion When is this sentence false? Answer:  p q pgq F F F T T F T T If we have statements p and q, then pgq is read  p implies q and means that pgq is true. C. Precedence: In expressions that contain  g , the  g is evaluated last. D. English expressions which mean g In addition to expressing pgq as  if p then q, the following English expressions are also used (note that these expressions parallel the normal English meaning of if p then q): if p, q p implies q q if p q whenever p E. Example. Construct a truth table for the statement p  EMBED Equation.DSMT4  ~ q g ~ p   F. Example: Show that the conditional pgq is logically equivalent to that statement ~ p  EMBED Equation.DSMT4  q. That is, show pgq  EMBED Equation.COEE2  ~ p  EMBED Equation.DSMT4  q   G. Example. Prove that ~( pgq ) is logically equivalent to p  EMBED Equation.DSMT4  ~q. (Do on your own!) 13. The contrapositive: The contrapositive of pgq is ~ q g~ p. A conditional statement is logically equivalent to its contrapositive.   Examples: Write each of the following in its equivalent contrapositive form. If today is Wednesday then tomorrow is Thursday. If the temperature goes up then it will be hotter. If today is Friday then I have a quiz today Suppose we have the conditional p g q . The contrapositive is ~ q g ~ p which, in English, is Think about this sentence. It says if q does not occur, then p does not occur. This means that p can only occur if q occurs. Or, to put it more succinctly: To summarize, the following are all equivalent: if p then q if p, q q if p q whenever p p implies q p g q if not q then not p ~ q g ~ p p only if q 14. Example Let a =  You can access the Internet from Bancroft Hall c =  You are a computer science major f = You are a plebe Translate the following English sentence to a logical expression: You can access the Internet from Bancroft Hall only if you are a computer science major or you are not a plebe. 15. Necessary and sufficient conditions Consider the sentence p is a sufficient condition for q. Isnt this what we normally mean in English when we say if p then q? Hopefully you answered yes, and so we have yet another meaning for p g q, namely:  p is a sufficient condition for q. Try to hang on for one more! Consider the sentence  q is a necessary condition for p. To say that q is a necessary condition for p means the occurrence of q is necessary for p to occur; if q does not occur then p can t occur: ~ q g ~ p (if not q, then not p). But considering the contrapositive, this is the same as p g q (i.e., if p then q). So, to summarize again, the following are all equivalent: if p then q if p, q q if p q whenever p p implies q p g q if not q then not p ~ q g~ p p only if q p is a sufficient condition for q q is a necessary condition for p 16. Review Question 1. Consider the sentence: MIDN Craner will get an A only if he hands in all his homework. (a) Express this as if A then B. (b) What would be an alternative equivalent way to express this? (c) Is this a third way to express the original sentence? If MIDN Craner handed in all his homework, then he received an A. (d) Express the original sentence as Blah is a necessary condition for Bleh. (e) Express the original sentence as Blah is a sufficient condition for Bleh. (f) Given the original sentence, can I conclude that MIDN Craner having handed in all his homework is a sufficient condition for his having received an A? Question 2. Consider the sentence: If MIDN OBrien is a midshipman at the USNA, then he is not married. (a) Express this as Blah is a necessary condition for Bleh. (b) Is this correct: Being a midshipman at USNA is a necessary condition for MIDN OBrien to be unmarried. (c) Express the original sentence as Blah is a sufficient condition for Bleh. (d) From the original sentence, is it correct to conclude: Being unmarried is a sufficient condition for me to conclude that MIDN OBrien is a USNA midshipman. (e) Express the original sentence as p only if q. Question 3. Consider the sentence: The fact that MIDN Cunha lives in Bancroft Hall is a sufficient condition for me to conclude that he is a midshipman. (a) Convert this statement to if p then q: (b) Express this as Blah is a necessary condition for Bleh. (c) From the original sentence, is it correct to conclude that living in Bancroft Hall is a necessary condition for being a midshipman? (d) Express the original sentence as p only if q. Question 4. Consider the sentence: MIDN Harrisons being a senior is a necessary condition for him to be Brigade Commander. (a) Convert this statement to if p then q: (b) Convert this statement to an alternative form of if p then q: (c) Express the original sentence as Blah is a sufficient condition for Bleh. Question 5. What is the truth value of this statement: If 2 + 2 = 5 then MIDN Tublin is a deity. Question 6. What is the negation of the following statement: If MIDN Hess is a senior then she is cynical. Question 7. Suppose p and q are statements and p ! q is known to be false. What is the value of p  EMBED Equation.DSMT4  q? Question 8. What is the negation of the following statement: If n is prime then n is odd or n is two. Question 9. Suppose Midshipman Regulations are modified such that midshipmen can own pets (and harbor them in their Bancroft Hall room). However, Regulation 143.46.51 Section 15, Paragraph 5, Subparagraph 3, Subsection 400, says: It is against regulation for any midshipman to keep more than 2 dogs and 2 cats in his room in Bancroft Hall. Midshipman Marsal  12349>?@GI C J   # & , 2 O R |  ·°¬hh*ahh.mH>* h.mH5\ hL5\ h5\hLh.mH hLh.mHhLh.mH5>*\hLh.mH5\h.mH5CJ\haoh.mH5\hb5CJ \aJ hao5CJ \aJ h.mH5CJ \aJ 3234?@B C $^a$gdL$ & Fa$ $0^`0a$$0^`0a$gdL $ ha$gd $`^``a$$a$gdL $ !a$ $&d P a$$a$  $ ' P S }   $h^h`a$gd$^`a$gd$a$ $^a$gd$ & Fa$$`a$ $0^`0a$$^a$     ^ q t u y # $ % & ' ( ) @ A B C D ۃvjhhEHUj*h h.mH6]h.mH5>*\ h.mH5\ h5\h.mH. s t D T  !3$^a$$ & Fa$ $ & Fa$gd$h^ha$$ & F`a$gdT $ !a$ $h`ha$gd$a$$h^h`a$gdD T !$IJKbcdefg~Ẫtej~SL h NCJUVaJjh Nh NEHUjnSL h NCJUVaJjh NUh N h.mH>*h h N>*jh NCJUmHnHuh*ah.mH6 h Nh.mHh Nh N6jh.mHCJUmHnHuh*ah*a6h*ahh.mH6h.mH h|sh.mH%34f"^0pr0 & F`gdT !p^pgd N & Fh^h^$ & Fa$$h^ha$  ^`ano024긩掇h h Nh Njh NUmHnHuj3 h Nh NEHUjSL h NCJUVaJh N h Nh.mHjh NCJUmHnHuh*a h|sh.mHh Nh.mH6h.mHjh NUjWh Nh NEHU34bdfhrxcepǻԋxkccccSjhCJUmHnHuhh.mH6jhhEHUjSL hCJUVaJhjhU!jhhEHOJQJUjSL hCJUVaJhOJQJjhOJQJUh.mHOJQJ h.mH>*h.mHjh NUjh Nh NEHUjSL h NCJUVaJh N0R&bcA$ & F`a$gdT$^a$$a$$ & Fa$pquv|}45𺵱䥱䥱՘䱔qjVSL h&%CJUVaJjh&%Uh&%hgdh.mH>*hjjOhhEHUhh.mH6h|sh.mH h>*jhUmHnHujuhhEHUjSL hCJUVaJhjhU hh.mHh&%h.mH6*5679;<?ABYZ[\op|}(˾櫛涔څxꔛsoghgdh.mH>*h|s h&%>*j!h&%h&%EHUjLSL h&%CJUVaJ h&%h.mHjh&%CJUmHnHuhgdh.mHCJaJh&%h.mH6jh&%h&%EHUjUSL h&%CJUVaJh&%hmVmhgdh.mHjh&%Uj)h&%h&%EHU$()op(*,.$ a$$a$ $^`a$ $^a$gd&%$0^`0a$gdgd$`a$$ & F`a$gdT^$8^8a$()*Z[rstuopw(*,,.}ujjhh.mHCJaJh.mHOJQJj*h&%h&%EHUjSL h&%CJUVaJh&%h.mH6h&%h.mH>*hgdjR'h&%h&%EHUjSL h&%CJUVaJj$h&%h&%EHUjSL h&%CJUVaJjh&%Uh.mHh&%hgdh&%CJaJ'.<TVXZ0123459:;<ST笟ߗЊ}j4h&%h&%EHUj2h&%h&%EHUh&%OJQJjp/h&%h&%EHUjSL h&%CJUVaJh.mHOJQJj,h&%h&%EHUjSL h&%CJUVaJjh&%Uh&%h&%h.mH6h.mHhgdh.mH>*,TUVXYZ[rstuvwxz{|}[\]^˾ڳ朑zogghgdh.mH6hgdhgdCJaJhgdh.mH>*h|shgdh.mHCJaJhgdh&%CJaJh&%h.mH>*h.mH5>*\ h.mH5\ h&%5\hmVmj<:h&%h&%EHUjSL h&%CJUVaJh&%h&%h.mH6h.mHjh&%Uj7h&%h&%EHU(.{|\^$ ^ `a$gd&% $ ^ a$gd&%$ & F   ^ a$gdT $^a$gd&% $^a$gd&%$ & F`a$gdT $h`ha$gd&% $^`a$( $h`ha$gdgd  !h^h ^`gdgd & F   ^ gdTh^h $^a$gdgd$h^ha$$ & F`a$gdT$ @ ^`a$gd&%q~&DFGHI`µѦskhgdOJQJjhgdOJQJUh.mH5>*\ h.mH5\ hgd5\h%Tj?hgdhgdEHUjSL hgdCJUVaJj<hgdhgdEHUjSL hgdCJUVaJhgdjhgdUhgdh.mHCJaJhh6hhgdh.mH6h.mH)()^`fhZbrtuvwxy $ ^a$gdlp^pgdl$`a$$ & F !`a$gdT$ ^a$gdl$h`ha$ $^a$gdgd$a$`abcdejklm ϿϻϗϿ{ϗϿl_ϗϿjYJhgdhgdEHUjSL hgdCJUVaJjGhgdhgdEHUjSL hgdCJUVaJhlh.mH6jDhgdhgdEHUjSL hgdCJUVaJhgdjhgdUhgdh.mH6h.mHjhgdOJQJU!jHBhgdhgdEHOJQJUjjSL hgdCJUVaJ% NPRTVXhvZ[\]^_abcrtxļĴȍİ}ȍȍvhc_hQV h.mH>*jhlUmHnHu hlhljhlCJUmHnHu hlh.mHjOhgdhlEHUj"SL hlCJUVaJhljhlUhlh.mH>*h.mHhlh.mH6h.mHOJQJjhgdUj MhgdhgdEHUjSL hgdCJUVaJhgd%x3456789;=BCJN䠙ykg_hlh.mH>*hQVjhlUmHnHuj8Uhlh1#EHUjW6YL h1#CJUVaJh1# hlh.mHhlh.mH6jh.mHCJUmHnHujhlCJUmHnHujdRhlh:EHUj78YL h:CJUVaJhljhlUh:h:6h:h.mH% 8;=>?@ABC   `gdI? & F`gdTp^pgdl`Ngij轰衔}xjc hlhljhOUmHnHu hl6 hlh.mHjhlCJUmHnHujr]hlhlEHUjrSL hlCJUVaJjZhlhlEHUjdSL hlCJUVaJjXhgdhlEHUj"SL hlCJUVaJhljhlUhlh.mH6h.mH%        8 9 : ; R S T U V W Z [ r s t u v w x y ~ 쥘Д|g_ *h/h/)j *h/h/5U\mHnHu *h/h.mHjh/CJUmHnHuh:jbh/h:EHUjL8YL h:CJUVaJj!`h/h/EHUjTL h/CJUVaJjh/Uh/h.mH6h/h.mH>*h%Th/h.mHhlhI?hQV%    y  ;" $^a$gd^$a$ $h`ha$gd^p^pgd/ & F`gdT Y!Z!_!`!!!!!!!!!!!!!!!!!""5"6"7"8"G"H"M"N""""""""""οΣ·zrrrrrrh*{h.mH6jkh^h^EHUjTL h^CJUVaJj[hh^h^EHUjTL h^CJUVaJjeh^h^EHUjTL h^CJUVaJh^jh^Uh^h.mH6h.mH5>*\ h.mH5\ h c5\h/h.mH,;"<""".#/#H#J#Q#X#[#\#^#_#`###$$ p^p`gd*{ & F`gdTp^pgd*{  !^gd*{ & F !`gdTh^h $^a$gd*{$h^ha$"""""""""### #####.#/#0#1#2#3#;#=#>#?#D#E#F#G#H#I#J#P#Q#W#X#Y#Z#[#\#]#^#_#`#ԽԹԽŹ|wssԡ|Թh h*{>*jh*{UmHnHu h*{h:jh.mHCJUmHnHujh*{CJUmHnHuh:h:6h:h*{h.mH6 h*{h.mHh*{h.mH>*h.mHjmh^h*{EHUjTL h*{CJUVaJjh*{Uh*{-`#g#m#n#o#p###################################븫돇qdjvh*{h*{EHUjTL h*{CJUVaJ h*{h.mHh*{h.mH6'jh*{h*{6CJUmHnHuh:h:6jsh*{h:EHUj8YL h:CJUVaJjph*{h:EHUj8YL h:CJUVaJjh*{Uh*{h:h.mHh*{h.mH>*'##$$$$ $!$"$9$:$;$<$=$@$A$B$Y$Z$[$\$]$_$`$a$x$y$z${$}$~$$$$ķӌ}phZU h*{>*jh*{UmHnHuh:h:6jρh*{h:EHUj/9YL h:CJUVaJjh:Uj,h*{h:EHUj9YL h:CJUVaJ h*{h.mHj|h*{h:EHUj9YL h:CJUVaJh:jyyh*{h:EHUj8YL h:CJUVaJh*{jh*{U!$$$$$$$$$$$$$$$$$$$$%% % % %%%%-%2%6%8%9%;%=%>%?%@%C%D%H%W%Z%a%e%o%p%t%u%v%w%%%%%%%%%ļĴĥļjh:h:EHUjK9YL h:CJUVaJjh:Uh:h:6h:h ch ch c>*h.mH5>*\ h.mH5\ h c5\jh cUmHnHuh*{h.mH:$$$%;%>%?%A%B%C%Y%Z%%%%%%%%%%%& &$h^ha$ ! & F`gdT $h`ha$gd cp^pgd*{%%%%%%%%%%%%%%%%%%%%%%%%%%%&"&D&I&O&v&w&x&Ӵˣyokgg`Y`g hHoQ5\ h.mH5\h;xthQV *h;xth c>*#j *h;xth;xtUmHnHu *h:h.mHjh;xtCJUmHnHuh.mHjh:h:EHUjy9YL h:CJUVaJjh:Uh:h:6h:jQh:h:EHUjh9YL h:CJUVaJh cjh cU" &w&x&''''''''e(f(h(x(y(z({(|(}((((( h^h^gd: & F`gdT $^a$gd;xt$h^ha$x&&&&&'''''''''(((((((( ("(%(&(=(>(?(@(B(C(E(F(](^(_(`(c(d(e(f(Ŀx h:h.mHj<h:h:EHUj9YL h:CJUVaJjh:h:EHUj9YL h:CJUVaJjh;xtU h:6h:h:6jh:h:EHUj9YL h:CJUVaJjh:Uh:h;xthHoQh.mH)f(g(h(x(|(}(((((((((()))!)-).)/)F)G)H)I)K)L)N)O)P)Q)W)X)o)쾺쾪vf_Wjh:U h+z#h.mHjh.mHCJUmHnHujh+z#CJUmHnHuh:h:6jh+z#h:EHUjW:YL h:CJUVaJjh+z#Uh&<h.mH>*h+z#h&<h.mH5>*\ h.mH5\ h&<5\hQVh;xth:h;xth.mH>*h.mHjh:CJUmHnHu"((())M)N)v)x))))) * *5*6*=*E*F*G***  !p^pgd+z#h`hgd+z#p^pgd+z#h`h $h`ha$gd&< o)p)q)r)t)u)v)w)x)))))))))))**** * * * *****-*Ⱥ}pϲ`Pjh.mHCJUmHnHujh+z#CJUmHnHujh+z#h:EHUj:YL h:CJUVaJjh+z#Uh+z#h.mH>*h.mH5>*\ h.mH5\ h+z#5\h.mHh+z#jh+z#UmHnHu h+z#h.mHh:h:6h:jh:Ujh+z#h:EHUjy:YL h:CJUVaJ-*.*/*0*3*4*5*6*=*>*F*G*H*I*J*K*z*************++;+<+>+?+G+H+I+J+īyuqiqajh2e4Uh2e4h2e46h2e4h hTh.mH>*hTh+z#5>*\h5>*\h.mH5>*\ hT5\ h+z#5\ h.mH5\jh+z#UmHnHuh.mHh+z# h+z#h.mHh:h:6h:jh:UjYh+z#h:EHUj:YL h:CJUVaJ&***++?+@+++),*,r,s,,, - -1-2-w-x-----^gd2e4gd2e4` & F `gd2e4h`hh`hgdTJ+a+b+c+d+f+g+k+l+++++++++++++++++++++++/,0,1,2,I,J,K,L,N,O,S,T,k,|ojhkh2e4EHUj5hkh2e4EHUjpMYL h2e4CJUVaJjhkh2e4EHUj\MYL h2e4CJUVaJjբhkh2e4EHUjLMYL h2e4CJUVaJh2e4h2e46jh2e4Uj$hkh2e4EHUj4MYL h2e4CJUVaJh2e4+k,l,m,n,q,,,,,,,,,,,,,,,,,,,,------7-9-:-Q-R-S-T-U-V-Y-Z-q-r-s-t-------ϳϳjhkh2e4EHUjXhkh2e4EHUjhkh2e4EHUjhkh2e4EHUj4MYL h2e4CJUVaJjGhkh2e4EHUh2e4h2e4h2e46jh2e4Ujhkh2e4EHUjLMYL h2e4CJUVaJ2----- . . . .$.%.&.'.(.).-...5.a.e.h.i.j.k..............澶zk^zjhTh EHUjb;YL h CJUVaJjhTUjh h EHUjS;YL h CJUVaJjh Uh h 6h h.mHhTh.mH>*hTjihkh2e4EHUjLMYL h2e4CJUVaJh2e4h2e46h2e4jh2e4Ujhkh2e4EHU$--...............X/Z/m/0 $p^pa$gdL$p^p`a$gdL$ ^ `a$gdL$^`a$gd4^gdT & F `gdT^gd2e4........$/%/4/5/a/b/i/j/m/~/0 0000X0Z00000"1$101^1`1t1v111 22.202224282<2>2@2B2D2F2H2J2L2N2ھڶڶڲڢژhL>*OJQJ hL>*hJhL6>*jhLCJUmHnHuh,,h,,hL6h=h4hJhLOJQJhJhL6hLhL5>*\ hJ5\ hL5\hQVh.mHhT6000000R11 2282N2v2233^gdL`gdL@ ^@ gdL$ & F 88^8a$gd4 $h^ha$gd4$ ^a$gd4$a$gdL $h`ha$gdL $p^pa$gdLN2v2x2222333 3333\3^3`3333333333334444464@4B4P4R4T4V4j4l4~444444445ƽ|hLOJQJ hJhJhJhJOJQJhJhJ6hJhL6 hQV5\ hL5\h,, hL>*hL>*OJQJhJhL6>*jhLCJUmHnHuhJjh4CJUmHnHuh=h4hL03\3^333333333333444444\5^555 $h^ha$gd4 $h^ha$gdLh^hgdL  !gdL ^`gdL550525^5`55555555555666666666666666666666666666666667778888 8 8888촧ßhLOJQJjhJhJEHUjYL hJCJUVaJjhJUh,,hL>*hJhJ6 h=6h=hJhL6hJh4hLhLOJQJ;5666688,808486888:8<8>8999999999@ ^@ gdL $h^ha$gdLh^hgdL8^8gd= $8^8a$gd48(8*8,8.80848:8F8T888888888$9&9(9*9,9.9P9R9T9V9X9Z9999999999쿷쯫쿷xn쿫jJhLEHUju ? hLCJUVaJjhLUjh,,h,,EHUjYL h,,CJUVaJh,,jh,,UhLOJQJh,,hL6h,,hL>*hQVhJjhJUmHnHu hJhLhLjh,,CJUmHnHu&999999999999999 :0:2:4:6:8:::x:z:|:~::::׿׵ח{s{nfWJjhM8hM8EHUj6YL hM8CJUVaJjhM8U hM86hM8OJQJh,,hM86hM8hM86hM8hM8>*hM8hQV *h,,h,,#j *h,,h,,UmHnHu *h,,hL6jh,,CJUmHnHuh,,hL6hLjh,,Ujh,,h,,EHUjYL h,,CJUVaJ99:::::::|;~;<<<<<<<<<d<e< hh^h`hgdL & F gdLh^hgdL $h`ha$gd4$^`a$gdM8$`^``a$gdL::::::::;$;X;Z;\;^;l;n;p;r;v;x;;;< <<<<<<<<<<!<d<e<<<<<<<Žͽ͹ͥ|t͹͹iiih,,h,,CJaJh,,hL>*hQV *h,,h,,)j *h,,h,,5U\mHnHu *h,,hL'j *h,,h,,CJUmHnHuh,,hLOJQJh,,hL6hLhL5>*\ hL5\ h_5\h=hM8hM86hM8jhM8U)e<<<<<<<<<===>>>>? $ a$gdL $h^ha$gd_ $ & F a$gdL ^`gdL  8^8gd,,  & F gdL gdLh^hgdL8^8gd,, & F gdL<<<==#=$=>>> >@>D>F>H>L>N>>>>>>??H?J?p?r?*@,@2@4@@@B@D@F@L@N@V@X@Z@`@d@f@h@j@~@@@@@@@@@@@@@@@@@@@@@@@@@@@@Ah_OJQJh=hL6hQVh_h=OJQJhLOJQJh_hL6h,,h,,CJaJhLJ????*@,@F@X@h@@@@@@AAAAAABBUBVBh^hgdLh`hgdXGgdL & F gdLh`hgdL  h^ `hgdLAAAA AAA&A(A,A0A4AxAAAAAAAAAAAAAB BBBBUBVBxBBBBBBBBBBBBBBCC5C6CwCxC~CCCCDDDDDD\D^DDDEE2E4EpErEEEEEEEFhLOJQJ hM85\ h_6h_hL6hLh_hL5>*\ hL5\ h_5\NVBBBBBBBBBBdDfD|F~F,G.G0G2GGGGGG & F gdLh`hgdL$a$gdL $h^ha$gdLh`hgdXGgdL gdLFF8F:FFDFFFXFZFpFrFzF~FFFFFFFFGGGGG"G$G.G2GGGGGGGGGGGGGGGGGGGGGG HHHHHH.H0HDHFHLHNHPHRHVHXHZH\HnHpHrHtHHHHHHHHIIIhB[hB[5>*\ hB[5\h=h_hLOJQJhLh_hL6RGGH HHHZHrHHHHIIIIIJJJJ^J_JcJdJ $h^ha$gdB[$a$gdB[ $h^ha$gdXGh^hgdL & F gdLIII,IIIJJJJJJJ^J_JcJdJJJJJ K1K3K4K8K9K`KjKtKKKKKKKKKK)L,L-L0L1L:LCLDLFLeLmLLLLLLLLLLLL9M@MQMRM弸᭩ᢸ hhB[hwh}AhBJaJh hB[>*hfZbhYChB[6 hB[hB[ hB[6hFhB[6hB[hFhB[>*h' hBJaJhBJaJ@dJJJJ3K4K8K9KKKKKKK,L-L1L3L4L5L6L7L8L9L$p^p`a$gdB[$a$gdB[ $h^ha$gdB[$8^8`a$gdB[9L:LLLLLLLRMSMVMWMMMMMLNMNSNTNN$^`a$gdB[h^hgdB[$8^8`a$gdB[$`^``a$gdB[ $h^ha$gdB[$a$gdB[RMSMVMWM~MMMMMMMMM.N6NKNLNMNSNTN{N|NNNNNNNNNNNN+O,OKOVOXOYO\O]OsOOOOOOOO(P.P/PVPWP`PaPdPePjPsPĿ h4hB[h phwCJaJhj&hB[6hwh phBJaJ hB[>*hFhB[>* hfZb>*h' hB[6h hhB[ hB[6hYChB[6hB[h}AhBJaJ;NNNNN+O,OXOYO\O]OOOOO)P,P/PdPePhPjP 8^8`gdB[ h^h`gdB[ $h^ha$gdB[ hh^h`hgdB[ $^a$gdB[h^hgdB[sPtPPPPPPP QQQQQQTQ_QaQbQeQfQgQQQQQQQQQQRRRFRXRZR`RRRRS S"S*SSTSVS`SbSSSSSSSSSTjhBhd>hB[6hd>hBJaJhFhB[>*h4CJaJ hB[6hYChB[6hfZbhj&hB[6hwh phBJaJhB[ hB[>*;jPPPPPQQQQaQbQeQfQgQQQQQRDR hh^h`hgd4 h^h`gdB[$a$gdB[ hh^h`hgdB[ 8h^8`hgdB[h^hgdB[DRFR S"S(S*STTTT\T]TTTTTTTT{U|UUUx $h^ha$gdB[gdB[ $p^pa$gdB[h^hgdB[ $h^ha$gdB[TTTTTTTTTTT'TYT\T]TcTdTsTtTTTTTTTTTTTUUz׽׸צמממצךובךבוׇׇבבךh|VFhB[>*h/snhB[6Uhw hw>*hfZbhhB[6hhBJaJ hhB[ hB[>* h@iohB[h@iohBJaJhd>hB[6hB[jhBjxhd>hBHUjkZL hBJUVaJ2is found to be keeping 38 dogs and no cats in his room. Is he in violation of the aforementioned regulation? Explain. Question 10. What is the negation of the statement x < 5 or x is odd ? Question 11. Your Company Officer tells you that he will make you Company Commander only if by senior year you have a CQPR greater than 2.8 and a military QPR greater than 3.0. When you reach senior year your CQPR is 3.5 and your military QPR is 3.6 but your Company Officer does not make you Company Commander. Did your Company Officer lie to you? Explain. 17. The converse: The converse of p ! q is q ! p. In other words, the converse of if p then q is if q then p. A. The converse of a statement is not logically equivalent to the statement. If a conditional statement is true, its converse may or may not be true. B. Examples: What is the converse of the following statements? If today is Wednesday then tomorrow is Thursday. If today is Labor Day, then today is a holiday. If I can run 2 miles, then I can run 1 mile. If I turned on the light switch, then the light came on. 18. The inverse: The inverse of p g q is ~ p g ~ q. In other words, the inverse of if p then q is if ~p then ~q. The inverse of a statement is not logically equivalent to the statement. If a conditional statement is true, its inverse may or may not be true. Examples. What is the inverse of the statements in the last example? C. Answer the following three True/False questions. i) A conditional statement and its converse are logically equivalent. ii) A conditional statement and its inverse are logically equivalent. iii) The converse and the inverse of a conditional statement are logically equivalent to each other. D. Example. For each of the following statements, write the contrapositive, converse and inverse If he is an Ensign, then he is a naval officer. Contrapositive: Converse: Inverse: If n is divisible by 10, then n is divisible by 5 and n is divisible by 2 Contrapositive: If n is not divisible by 5 or n is not divisible by 2, then n is not divisible by 10. Converse: If n is divisible by 5 and n is divisible by 2 then n is divisible by 10. Inverse: If n is not divisible by 10 then n is not divisible by 5 or n is not divisible by 2. 19. The biconditional Given two statements p and q, the biconditional p ! q, read  p if and only if q, is the statement that is true if p and q have the same truth values and is false if p and q have opposite truth values.  p q p ! q  Thus, the statement  p if and only if q is really saying two things: So saying  p if and only q is saying: or, symbolically B. Again, p ! q is logically equivalent to the conjunction of p g q and q g p. But we already said that p g q is equivalent to the statexyz{|}~ $^a$gdB[h^hgdB[ $^a$gdB[^gdB[gd4$h^h`a$gd4 $h^ha$gdXGh^hgd4h^hgdB[ $^a$gdB[$a$gdB[ $h^ha$gdB[Xnxhp @A &(*,jmnݳhzh4CJaJ h46hXG5>*\h4OJQJh*h4CJaJh*h4>* h*h4hXGh*h46h45>*\ h45\h4hB[@bc @AEF8^8gd4 & F gd4gd4 $8^8a$gd4 $ & F a$gd4 $h^ha$gd4$a$gd4$^`a$gd4(*/012345678$a$gd4 $8^8a$gd4 $ & F a$gd4 $h^ha$gd4 $ & Fa$gd4 $h^ha$gdXGgd48mn vw{|}~$ $p^pa$gd4 $8^8a$gdXG $ & Fa$gd4 $h^ha$gd4gd4 ^`gdfZbh`hgd4 vwz{|}~$%01?@Z[rs,-OPmn:<4ǿh\Xh46h45>*\ h45\hzh46hzh4CJaJhzh4>*hfZbhXGh4h\Xh4CJaJH$%01;<BC2$ & F ^`a$gd4h`hgdXG$^`a$gd4$a$gd4$p0^p`0a$gd4gd4 $ & Fa$gd4 $8^8a$gd4 $p^pa$gd424PTXZ\^` ^`gd4gd4^gd4 & F 8^gd4`gd4  !p^pgd4p^pgd4 $h^ha$gd448:PRTX^ (*Fdfhjlnxz|~     R T V X Z \         T V h?`h4CJaJUh4OJQJh?`h46hfZbh4CJaJ hfZbh4hfZb h\Xh4h\Xh46h4jh4CJUmHnHuCment that Similarly, we said that q g p is equivalent to the statement Taking the conjunction of these two statement we have p ! q is equivalent to saying C. The following is an example of a biconditional: An integer is even if and only if it is divisible by 2. D. To summarize, the following are all equivalent p ! q ( p g q )  EMBED Equation.DSMT4  ( q g p ) p is a necessary and sufficient condition for q p if and only if q E. Example: Express the statement  I am happy if an        T V X Z 46 $ & F 8p8^8`a$gd4 $h^ha$gd4 $^a$gd4$a$gd4$^`a$gd4$^`a$gd4 hjln<DPQRTYah_hM8hYh45hYh46h9Lh4>*hfZbh)h4CJaJU h4>*hXG hXGh4j"h?`h4EHUjZL h4CJUVaJjh4Uh4OJQJh?`h46h42 lPQRSTUh^hgdL h^`hgdXG  ^gd4 gd4  !gd4 ^`gd4 & F 8p8^8`gd4d only if I have found true love as the conjunction of two if-then statements. F. Notation. From now on, we will very often abbreviate if and only if as iff.     PAGE 10 PAGE 1 ~( p  EMBED Equation.DSMT4  q)  EMBED Equation.DSMT4 ~p  EMBED Equation.DSMT4  ~q ~(  EMBED Equation.DSMT4  q )  EMBED Equation.DSMT4 ~ p  EMBED Equation.DSMT4  ~ q  !"#$%<ԹԪԹԎԹj{h:h4EHUjh9YL h4CJUVaJjh:h4EHUjK9YL h4CJUVaJjh4Uh:h46hfZb0JmHnHuh4h40JmHnHu h40Jjh40JUh4Njh4NU,C ^`gd:&`#$<=>?ABCFG^_`abcdij׻ן׃vokgh_h.mH h:h4jfh:h4EHUj6:YL h4CJUVaJjh:h4EHUj9YL h4CJUVaJjh:h4EHUj9YL h4CJUVaJ h46h:h46h4jh4Uj2h:h4EHUjy9YL h4CJUVaJ#h^hgdL6&P1h:pao/ =!"#$% Dd b  c $A? ?3"`?2N1`2}l,=D`!N1`2}l,=xuR=KP=#-$mQDSA7?-:X)XF- (Eqqw$9J bܜ{=pEQXmΘ6bNvoBT,h3fYfuik#]ʣhD&GEUjh᷶M"x%MW6}GAjR $8X`>F!.1c,'s9Pv#2#|hBlh Ga=fdRz{+:oU'T%DGW; RʔaU)ޕ '#xth`i:3r's0٪h.쿄$BQ̑^#~4kXFfDd |b  c $A? ?3"`?2e˖(A֯ `!e˖(A֯ x`R0x]Q=K#Q=Mj("f"ݪ,llmIl⨳ILtv6r  o/ZJ}o& ^͜9{aо@ ҂|H}hF .,v E-E_#KrqH|Y 3^CiCb E-D#R[xK:bMI<{U003NܬVc_ܷ1WW<KH&ZZBABP$sWPttlkv;Yi |rn̮DU/9uD$Λͺ ǗS䲕u }he{9S7~rkEFO/fBř`Vp?]gbʕ![ P6$јRWۍ{#|y |PBNTUAvN5$|Dd b  c $A? ?3"`?2iA* aY*`!iA* aY*,`@!xMQKKQΝL5IJK1U', $tND0ٹne@s}@ ,q\ so=! h !"Db2(N/]T<HsVxtF&knkqK4!˃#m*KX j_d+홥ASΝD#g'bmQ]؛'V*  ?ծT~@'"[ʗAs]9w΁E\/{ kܾj8Mĵiw<#e+w8H`6f7oU8N.1~nsk22 ?ma]5/jΗ6bă,F?aVB#ϮM 41~joh4 Y?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~E./Root Entry; F="Data WordDocument:8"ObjectPool=Yx="="_12805715136Fx="x="Ole CompObjiObjInfo "%&'*-./2567:=>?BEFGJMNORUVWZ]^_befgjmnoruvwz}~ FMathType 5.0 Equation MathType EFEquation.DSMT49q;<XDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  pEquation Native _1280570684 Fx="x="Ole CompObj i FMathType 5.0 Equation MathType EFEquation.DSMT49q;TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A   pObjInfo Equation Native  _1280570990 Fx="x="Ole  FMathType 5.0 Equation MathType EFEquation.DSMT49q;dXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  '"CompObjiObjInfoEquation Native _1280571006Fx="x="Ole CompObjiObjInfoEquation Native  FMathType 5.0 Equation MathType EFEquation.DSMT49q;TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  p'"q_1280571068"Fx="x="Ole  CompObj!iObjInfo# FMathType 5.0 Equation MathType EFEquation.DSMT49q;TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  p'"qEquation Native $_1280571286'Fx="x="Ole (CompObj )i FMathType 5.0 Equation MathType EFEquation.DSMT49q;LXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  ("ObjInfo!+Equation Native ,_1280571381$Fx="x="Ole 0 FMathType 5.0 Equation MathType EFEquation.DSMT49q;<XDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  p("qCompObj#%1iObjInfo&3Equation Native 4_1280571372)Fx="x="Ole 8CompObj(*9iObjInfo+;Equation Native < FMathType 5.0 Equation MathType EFEquation.DSMT49q;<XDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  p("q_1280571734.Fx="x="Ole @CompObj-/AiObjInfo0C FMathType 5.0 Equation MathType EFEquation.DSMT49q;LXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  "Equation Native D_1280571733E3Fx="x="Ole HCompObj24Ii FMathType 5.0 Equation MathType EFEquation.DSMT49q;lXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  p"qObjInfo5KEquation Native L_12805717248Fx="x="Ole P FMathType 5.0 Equation MathType EFEquation.DSMT49q;lXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  p"qCompObj79QiObjInfo:SEquation Native T_1280571786,@=Fx="x="Ole XCompObj<>YiObjInfo?[Equation Native \ FMathType 5.0 Equation MathType EFEquation.DSMT49q;DXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  '"_1280571799BFx="x="Ole `CompObjACaiObjInfoDc FMathType 5.0 Equation MathType EFEquation.DSMT49q;TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  ("Equation Native d_1280571830;JGFx="x="Ole hCompObjFHii FMathType 5.0 Equation MathType EFEquation.DSMT49q;DXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  '"ObjInfoIkEquation Native l_1280572557TOLFx="x="Ole p FMathType 5.0 Equation MathType EFEquation.DSMT49q;<XDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  d"CompObjKMqiObjInfoNsEquation Native t_1280572618QFx="x="Ole xCompObjPRyiObjInfoS{Equation Native | FMathType 5.0 Equation MathType EFEquation.DSMT49q;<XDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  d"_1280572522VFx="x="Ole CompObjUWiObjInfoX FMathType 5.0 Equation MathType EFEquation.DSMT49q;lXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  ("Equation Native _12805728451[Fx="x="Ole CompObjZ\i FMathType 5.0 Equation MathType EFEquation.DSMT49q;dXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  ("ObjInfo]Equation Native _1280572881`Fx="x="Ole  FMathType 5.0 Equation MathType EFEquation.DSMT49q;DXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  '"CompObj_aiObjInfobEquation Native _1280572894^meFx="x="Ole CompObjdfiObjInfogEquation Native  FMathType 5.0 Equation MathType EFEquation.DSMT49q;DXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  '"_1280572903jFx="x="Ole CompObjikiObjInfol FMathType 5.0 Equation MathType EFEquation.DSMT49q;TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  ("Equation Native _1280572962h|oFx="x="Ole CompObjnpi FMathType 5.0 Equation MathType EFEquation.DSMT49q;TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  ("ObjInfoqEquation Native _1280915511tFx="x="Ole  FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  p("qCompObjsuiObjInfovEquation Native _1280915031!ryFx="x="Ole CompObjxziObjInfo{Equation Native  FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  p("q_1280573284~Fx="x="Ole CompObj}iObjInfo FMathType 5.0 Equation MathType EFEquation.DSMT49q;dXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  '"Equation Native _1280573298cFx="x="Ole CompObji FMathType 5.0 Equation MathType EFEquation.DSMT49q;dXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  '"ObjInfoEquation Native _1280573699Fx="x="Ole  FMathType 5.0 Equation MathType EFEquation.DSMT49q;LXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  '"CompObjiObjInfoEquation Native _1280915532Fx="x="Ole CompObjiObjInfoEquation Native  FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  ("_1280574915Fx="x="Ole CompObjiObjInfo FMathType 5.0 Equation MathType EFEquation.DSMT49q;DXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  Aa"BEquation Native _1280574938Fx="x="Ole CompObji FMathType 5.0 Equation MathType EFEquation.DSMT49q;LXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  !ObjInfoEquation Native _1280574962Fx="x="Ole  FMathType 5.0 Equation MathType EFEquation.DSMT49q;lXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  A!BCompObjiObjInfoEquation Native _1280915668Fx="x="Ole CompObjiObjInfoEquation Native  FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  p'"q()  !$'(),/014789<?@ADGHILOPQTWXY\_`adghilopqtwxy| FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_1280915686Fx="x="Ole CompObjiObjInfoEquation Native _1280575408Fx="x="Ole  CompObj i_A  p'" FMathType 5.0 Equation MathType EFEquation.DSMT49q;<XDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_EObjInfo Equation Native  _1280915707Fx="x="Ole _A  p'"q FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_ECompObjiObjInfoEquation Native _1280915718Fx="x="_A  p'"q() FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APOle CompObjiObjInfoEquation Native G_APAPAE%B_AC_A %!AHA_D_E_E_A  p FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/AP_1280915729Fx="x="Ole "CompObj#iObjInfo%Equation Native &_1280915759Fx="x="Ole *CompObj+iG_APAPAE%B_AC_A %!AHA_D_E_E_A  q FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/AP      !"#$%&'()*+,-g0123465789:;<=?>@ABCDFGIHJKLMNOPRQSTUVWXY[Z\]^`_abcdehijklmnopqrstuvwxyz{|}~1{K. [<'?Z¨==(픋eY @bԗgț&‚2 h5x_jon>CePy"- lb1fW 򞓱* 5W(9U3͍r>x]j|Z)8aKYb#\2LgrfMSn3'kqz:mO0)H#ncD>kiAF0NX`4X]LGZϮcRG=ʽQHQ9%@Fyƕ 7~EFEjwt7Dd Db  c $A? ?3"`?2$<$wsmfD27ޖ`!<$wsmfD27ޖxuRK#Qi6Qs#؜x-L&b׻=͑ M,-m?: ɭ`l1|oJZ`SH!|$dдc! Sq 4 \$7DHٍ\%|G x'쵃cjJNL;Ms\q~yIǜ}lk?}d+*y ^Y$g[rB'vT|)nPv}_*D61Vض^/p2SGD},DxyVpj@*g&5Q fČq }1oe: ܤm/ z\gO.?$DH2 <O8%Xeo䝋0ޮ('z)A9~b8.z^+1Dd Db   c $A? ?3"`?2$<$wsmfD27ޖ`!<$wsmfD27ޖxuRK#Qi6Qs#؜x-L&b׻=͑ M,-m?: ɭ`l1|oJZ`SH!|$dдc! Sq 4 \$7DHٍ\%|G x'쵃cjJNL;Ms\q~yIǜ}lk?}d+*y ^Y$g[rB'vT|)nPv}_*D61Vض^/p2SGD},DxyVpj@*g&5Q fČq }1oe: ܤm/ z\gO.?$DH2 <O8%Xeo䝋0ޮ('z)A9~b8.z^+1Dd Db   c $A? ?3"`? 2$<$wsmfD27ޖ`!<$wsmfD27ޖxuRK#Qi6Qs#؜x-L&b׻=͑ M,-m?: ɭ`l1|oJZ`SH!|$dдc! Sq 4 \$7DHٍ\%|G x'쵃cjJNL;Ms\q~yIǜ}lk?}d+*y ^Y$g[rB'vT|)nPv}_*D61Vض^/p2SGD},DxyVpj@*g&5Q fČq }1oe: ܤm/ z\gO.?$DH2 <O8%Xeo䝋0ޮ('z)A9~b8.z^+1Dd b   c $A? ?3"`? 2{B2/Lz,c [m`!{B2/Lz,c [,HxMQM/Q=MHfZ_!TBbAEmXhhŲ&TwV6XH†`gccGj$}/s3w>pA3!]וh x [vκ wh+N[dkDuDBHY\s%_qz%~vp"ZaԞm+EXzqMfL4> h34 eϫW{e*Tn{P6yV؈W6팵mVs]3vX2ŠEXW*rF^AW4l%bfѵi L8Igi Z~ _~E|"tgj!F0NT`4lTῺbG:OIv#FDfn c"r^"QR(2xz(Dd l@b   c $A? ?3"`? 2({U- ["`!{U- [ xuRMKa~w֬$Jڛ$&Wm#lbnKz"z^KzPI0l60<<3+$࣒I!$p8ѢxĦ8/"!*qB&taàwgd pFtSAV9o8@g 3d4-767roG~/ԞQԜwzjf󗿽du[7Di Fs[BWCv~m^.'?ba`0iJ7Pxqpm*3\D|cU+vq ;PYT ViGDCl0\2KV3e&  z0O\bI PT=-gYK"$ |Og::%d;a3'D*Ip\Ocon4[ Dd l@b   c $A? ?3"`? 2({U- ["`!{U- [ xuRMKa~w֬$Jڛ$&Wm#lbnKz"z^KzPI0l60<<3+$࣒I!$p8ѢxĦ8/"!*qB&taàwgd pFtSAV9o8@g 3d4-767roG~/ԞQԜwzjf󗿽du[7Di Fs[BWCv~m^.'?ba`0iJ7Pxqpm*3\D|cU+vq ;PYT ViGDCl0\2KV3e&  z0O\bI PT=-gYK"$ |Og::%d;a3'D*Ip\Ocon4[ Dd b  c $A ? ?3"`? 23PmnO$`!3PmnO,`@!xMQMKQ=M10QщP]FPFtNu@bjٹr&.t}ō7]JW(};~scXPǤH!B$dhV~K zga =5\OujzőO6O JѓnBVn՛$.~ݷ~SOg͉9\a쇵ظ)`L!WVs+eQL׶70p^z{Ha 3];2"a!hj.̹|wbxrdAgDd[i> .EJ!P?ZʔDH #+kϮځx.d{DvW#ed1~CU#Ⱥ(+Xk,z^x6k!AHaW 2+ӱ'gW~4Ѫ~wjoh8]+W Y .EJ!P?ZʔDH #+kϮځx.d{DvW# .EJ!P?ZʔDH #+kϮځx.d{DvW#ed1~CU#Ⱥ(+Xk,z^x6k!AHaW 2+ӱ'gW~4Ѫ~wjoh8]+W Y .EJ!P?ZʔDH #+kϮځx.d{DvW#ed1~CU#Ⱥ(+Xk,z^x6k!AHaW 2+ӱ'gW~4Ѫ~wjoh8]+W Y .EJ!P?ZʔDH #+kϮځx.d{DvW#ed1~CU#Ⱥ(+Xk,z^x6k!AHaW 2+ӱ'gW~4Ѫ~wjoh8]+W Y.=`!&.^+H>,@RxMQ;LA}ǩ$w/#v~bD !D CI@0Hgea11v&vYiμyqpA.gCz=ؤq~`a𫰉Dw؋ e7sC0%_qF[!~vp!ZaԞmWwjI7_Bh5>[Z)yAWm(G^#T'*vTbv4Ts0NܪUN]<"KIn#bX2L7?`!&.^+H>,@RxMQ;LA}ǩ$w/#v~bD !D CI@0Hgea11v&vYiμyqpA.gCz=ؤq~`a𫰉Dw؋ e7sC0%_qF[!~vp!ZaԞmWwjI7_Bh5>[Z)yAWm(G^#T'*vTbv4Ts0NܪUN]<"KIn#bX2L7ٷlFFq\՗nnw$G}˿!0 Z (nOPTȤ`Y(Ĭj~7^޳ց]EPvXzhT.j|RaDГZB}hiGזsf=1NxP3$Iҵ8= #]VaI\"t5AC,0ZBGxΧ#-gWus+ro(iTkvQq!CDk]&eE?-uLDd b  c $A ? ?3"`?2m#a6;E`!m#a6,`@!xMQ;OAvq܁h$1{Q1D x$ K+;cgoa00xV&r7;o=0tJ?8!JVKI6/!4֡c-Uy .P/<?B¨=#]/n _[^y vGbN޴+9N7M 2 xC9j?f2r"osdj@9j?xʠx:̗Baɮwc='e;ULT5nv !"ǕSF|Ɍ8UlI43V5嬕j- wm.e zyH!iwm~8&\q-=h VПՈx ;`?yL薿{7J4nTkNQDp!CDK?L"x#"Zt\Dd b  c $A? ?3"`?2$? n-J`!$? n-,`@!xMQK/Q:m2zSZyDbce F+j0IꎍM-[ҍXIԹ7~w2#pr"osdj@9j?xʠx:̗Baɮwc='e;ULT5nv !"ǕSF|Ɍ8UlI43V5嬕j- wm.e zyH!iwm~8&\q-=h VПՈx ;`?yL薿{7J4nTkNQDp!CDK?L"x#"Zt\Dd b  c $A? ?3"`?26o^u)bZƉSNM`!6o^u)bZƉS,`@!xMQK/QΝZMfZa*!7چJ J[,ljHX[JD{ qsOw|^ "|Dj)4ESmR6hIgd=1~-N{r6%( hK q{f^*`^yvb|Ԟi7`I0 ЎڏtȤ󠮍](,:v㦝=݊֬R9@Dq9@*k%OeQtĦĴLc)gC{ ^9F9l]5CƲ5X?K䒞&fx5y8yv:IwƉF2J-5΃U|IUolT7*tDd b  c $A? ?3"`?26o^u)bZƉSO`!6o^u)bZƉS,`@!xMQK/QΝZMfZa*!7چJ J[,ljHX[JD{ qsOw|^ "|Dj)4ESmR6hIgd=1~-N{r6%( hK q{f^*`^yvb|Ԟi7`I0 ЎڏtȤ󠮍](,:v㦝=݊֬R9@Dq9@*k%OeQtĦĴLc)gC{ ^9F9l]5CƲ5X?K䒞&fx5y8yv:IwƉF2J-5΃U|IUolT7*tDd Db  c $A? ?3"`?22AޚXR`!2AޚXМxuR/Q.춈a+!.~DVpЦъc-VRI$A"nN:IԼDb/Y/ a2Θo4`}n|]H]FT !F{£W%:,fy;Y[@a >.P7!~9ӒUcVE_e]\߼WnSc⡴qJVO+" _Z]jv-Nە? ¿QAT*|QAD49 ֵ529^6e*Kn7~9+'#墉:Zx҈ۚ:2A=;bص!M WubA PT]{ST aHG"s ?,Ϳ;ga9 Q'3G NZ%8 l¾Dd Db   c $A? ?3"`?2(* t|U`!* txuROPsL'@ZU I":4QDuLM14UB~ R.akGJC]2TR1NwH=>wߝBDl*)z!E8Sf x!'#" ?.gE[ݚd=IFs=ɭN^=#_8M3t̝j>M璎'_PsJȯk"VߐPe1"=׭V砶W?쯩*4)u(m_B'TU&s&ҡU.oDuNQuZYT񻉪Q4#tL6bWS䪕u }he O ?-)wm z`:(Eۣbr !B4 Ux:j~s19oBnTP9~4.ƛ͖fO։]Dd b ! c $A? ?3"`? 26o^u)bZƉSZX`!6o^u)bZƉS,`@!xMQK/QΝZMfZa*!7چJ J[,ljHX[JD{ qsOw|^ "|Dj)4ESmR6hIgd=1~-N{r6%( hK q{f^*`^yvb|Ԟi7`I0 ЎڏtȤ󠮍](,:v㦝=݊֬R9@Dq9@*k%OeQtĦĴLc)gC{ ^9F9l]5CƲ5X?K䒞&fx5y8yv:IwƉF2J-5΃U|IUolT7*tDd b " c $A? ?3"`?!2Wy 4Q(R1ZV[`!Wy 4Q(R1ZV,`@!xMQK/QZMfzN*V,k0I¦D-aam)5Vu5==/ 1 qTΘvͱW|h1t36p^RI]/?RV0:&xE>.[<'?B¨==*V@7{Xh>{r%o>0~AL*.b1f {ʾ:jPƆ46+%vPZ #TH4j'ۉy3jLw5Nҙrڱ!] W" ;mҏ# 8bjӰ>bs6=\&uߝ%ȴ ("8!"5&eEߩsDd b # c $A? ?3"`?"2Wy 4Q(R1ZV]`!Wy 4Q(R1ZV,`@!xMQK/QZMfzN*V,k0I¦D-aam)5Vu5==/ 1 qTΘvͱW|h1t36p^RI]/?RV0:&xE>.[<'?B¨==*V@7{Xh>{r%o>0~AL*.b1f {ʾ:jPƆ46+%vPZ #TH4j'ۉy3jLw5Nҙrڱ!] W" ;mҏ# 8bjӰ>bs6=\&uߝ%ȴ ("8!"5&eEߩsDd b $ c $A? ?3"`?#2 IEz[@:"Ye``! IEz[@:"Y,`@!xMQ/CQ}}h5y+DW &*6 *1CRLKDlv V3IԹ'PqqTΘt:ͲQO|mBS=XNSj "mrCl2_ rE|o.D+ӳMgR"K7;c|8C4asʑWv>Al:6Y,ҲU+$*vڷkc׌ualTuRjѮ #BtHԫSd̸R03hfMnk@Hu;@)H#ncd!kjAF0NX`4lXMOblJ4z}_; :{bFZt)<7G-YB.oe;,A`|/D+3j1hcgoK2srm\(pi"Lii}~|At23ֱ۶YͭŊNt\LS1{a"ƊS3W.و-:'gsY+ ܥ[ްW2A󴡑/J^W#_6Mxb[z "}BwV#UCǁ `?jhkwD6e Q{^Ey=Dd b & c $A? ?3"`?%2{>q8!ge`!{>q8!g@2xuRKPK6VVET͟E[VZhM\":8 nR$X數#}}ᄏ0)#qܟQ$%+V`{Re"{V(恞ev9;%FU[ŭ Spe 2̣xzw5kUmF[vڶ%)rvI|DOJB]X=:m$M]~ՀsƝ!rQP,L΀SP&91#!ӡi0*k얠)4nS융mNCv'D9+vwbb?aKpB{sيDd Tb ' c $A? ?3"`?&2eN8fϫJh`!eN8fϫJ, XJRxMQ=OA}ǩ D;?bbcw|D !D0SI@0@GEa[ۚXKKge".q};;f P 8X*gEٴq~bZ0F:y JTmq7ʏU;5l`Uxhlx/J¨==,헋@ oߓ%atP/ww2mj~Fah4 >R~v_]16URǨ=ȹ|Y% FK$yA'<뷃sjȗn̸-sVuquuCnnwtRF6,,{C2b?,sZjڷ'|P? Luw}RFS:{nQuRYT a#tL7b:+f^~[Rkczy(E-oPy)YJyXzD!h*jq8!g-n`!{>q8!g@2xuRKPK6VVET͟E[VZhM\":8 nR$X數#}}ᄏ0)#qܟQ$%+V`{Re"{V(恞ev9;%FU[ŭ Spe 2̣xzw5kUmF[vڶ%)rvI|DOJB]X=:m$M]~ՀsƝ!rQP,L΀SP&91#!ӡi0*k얠)4nS융mNCv'D9+vwbb?aKpB{sيDd b * c $A? ?3"`?)2Y?T#*" ((5q`!-?T#*" ((v`\hxڕSkQnR(b7k{ѫM=4%aĜ(xOG/Jgx4{Dy3͏I@L2XQH}JC} ЗX͚{,X`*|oW}LxBKb8Cg_U>oe*ٹvI^>~k}bqno}0%ؚ+ʍۃ\el[WCݼ~lOXqa3Bre-Qm`8dڐE,VrTN*Mj}\&4J^4Ys1^aT zѯCDLIj=p1HwS 7Â^g56qrZ9MU;/FL0)Cd OS{vHfrBh3tGoa#Xj ,hm̴Qù3aE߾7m, 6RZtT0@[hOKaG!6&*aZq]XUfnFt$ţ+>FFA`dǬ,ס{Fo񳗢쫘nT:__Bjdfq'HayO4U[q?挅Dd Db , c $A? ?3"`?+2&(w6Tvnv`!(w6TvnxuROPsLNUE$hI"H `mS%'*U%; !6v&$6&R3!5s8>wߝT:R hTB|%^~絃^/Ԟ/qZJ1]k5)7jm^BSvvyRnevT|).jP|W Ρ 2K?@wRinm'kvOE֋N?"HԷfFñT'9ge]C_*X$1݂rgb'ũF(// BÂIF$T'VB~ Xc͏䝋0xὝx QNڍSFנl?[?]^Dd b - c $A? ?3"`?,2Yor8x$]5y`!-or8x$]v`\hxڕSkAi`7"MlML &cXu@,iN ēC œF/x4l"D8|,a 0> 5,(B$FKt)M_LtŁ9W0PXÖ{<&'#~YS 2 ΋}Z8a|z^))|Zv|{%y+& pSBcP=/e8xG?#DCqJm~oAcUZ1b1$_2ټ39؎:;~`t>[ yPUYz>rӠ5a܈ĭTuQ jq3[p3[%3 Ng2`{3|[-2r/Yw/ٖd[Űt1dzcĉ NԀNVjd"=A/2^PEUTf7ꩃk_L24[A;́$^Q=5/Dd b . c $A? ?3"`?-2^)]3ߏ|`!^)]3ߏ*Rx]QKKQ|D9+#h6RpT0wBhc˖mh׾E~C˰id^.p> ~@1 q$11>$Za3-BY҄9D0Hx *DtBșRiY/q81>yKK9 VWnfw{}{;y(li#Dl4/gxG_APAPAE%B_AC_A %!AHA_D_E_E_A  a" FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/AP_1280915833F="="Ole BCompObjCiObjInfoEEquation Native F_1280915915F="="Ole JCompObjKiG_APAPAE%B_AC_A %!AHA_D_E_E_A  (" FMathType 5.0 Equation MathType EFEquation.DSMT49q DXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APObjInfoMEquation Native N_1280915935F="="Ole RG_APAPAE%B_AC_A %!AHA_D_E_E_A  p(" FMathType 5.0 Equation MathType EFEquation.DSMT49q DXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APCompObjSiObjInfoUEquation Native V_1280915957F="="G_APAPAE%B_AC_A %!AHA_D_E_E_A  a" FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APOle ZCompObj[iObjInfo]Equation Native ^G_APAPAE%B_AC_A %!AHA_D_E_E_A  '" FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/AP_12809160555F="="Ole bCompObjciObjInfoeEquation Native f_1280916089F="="Ole jCompObjkiG_APAPAE%B_AC_A %!AHA_D_E_E_A  p(" FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APObjInfomEquation Native n_1280916106F="="Ole rG_APAPAE%B_AC_A %!AHA_D_E_E_A  p(" FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APCompObjsiObjInfouEquation Native v_1280916127F="="G_APAPAE%B_AC_A %!AHA_D_E_E_A  p'" FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APOle zCompObj{iObjInfo}Equation Native ~G_APAPAE%B_AC_A %!AHA_D_E_E_A  p'" FMathType 5.0 Equation MathType EFEquation.DSMT49q LXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/AP_1280920884F="="Ole CompObjiObjInfoEquation Native _1280920908F="="Ole CompObjiG_APAPAE%B_AC_A %!AHA_D_E_E_A  '" FMathType 5.0 Equation MathType EFEquation.DSMT49q dXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APObjInfoEquation Native _1280920924+F="="Ole G_APAPAE%B_AC_A %!AHA_D_E_E_A  (" FMathType 5.0 Equation MathType EFEquation.DSMT49q LXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APCompObjiObjInfoEquation Native _1280920944F="="G_APAPAE%B_AC_A %!AHA_D_E_E_A  (" FMathType 5.0 Equation MathType EFEquation.DSMT49q LXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APOle CompObjiObjInfoEquation Native G_APAPAE%B_AC_A %!AHA_D_E_E_A  '" FMathType 5.0 Equation MathType EFEquation.DSMT49q LXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/AP_1280916307  F="="Ole CompObj  iObjInfo Equation Native _1280916322F="="Ole CompObjiG_APAPAE%B_AC_A %!AHA_D_E_E_A  '" FMathType 5.0 Equation MathType EFEquation.DSMT49q LXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APObjInfoEquation Native  _1280908929wF="="Ole G_APAPAE%B_AC_A %!AHA_D_E_E_A  '"p("q() FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesCompObjiObjInfoEquation Native _1280909252F="="Times New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  (" FMathType 5.0 Equation MathType EFEquation.DSMT49q dXDSMT5WinAllBasicCodePagesOle CompObjiObjInfoEquation Native Times New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  (" FMicrosoft Equation 2.0 DS EquationEquation.COEE29q 8C _1071320437F="="Ole CompObjjObjInfo Equation Native (_1280909283&#F="="Ole CompObj"$i FMathType 5.0 Equation MathType EFEquation.DSMT49q lXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  ("ObjInfo%Equation Native _1280914964(F="="Ole  FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  '"CompObj')iObjInfo*Equation Native _12810105390-F="="Ole CompObj,.iObjInfo/Equation Native  FMathType 5.0 Equation MathType EFEquation.DSMT49q%hT@DSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_AE*_HA@AHA*_D_E_E_A  ("_12810172992F="="Ole CompObj13iObjInfo4 FMathType 5.0 Equation MathType EFEquation.DSMT49q%hD@DSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_AE*_HA@AHA*_D_E_E_A  '"Equation Native _12809160227F="="Ole CompObj68i FMathType 5.0 Equation MathType EFEquation.DSMT49q TXDSMT5WinAllBasicCodePagesTimes New RomanSymbolCourier NewMT Extra!/ED/APG_APAPAE%B_AC_A %!AHA_D_E_E_A  '"ObjInfo9Equation Native 1TableSummaryInformation(<`!(4h$$fs *@x]QMKQ=VŒD9+#hFTZTS ~k]D-ZZM 9Eǜ{_1%匹p(2v}~ k„4b(B'#EAROt.+9.6U|hS}qp)gBj5vUۻ=]c壛R756qrZ9MU;/FL0)Cd OS{vHfrBh3tGoa#Xj ,hm̴Qù3aE߾7m, 6RZtT0@[hOKaG!6&*aZq]XUfnFt$ţ+>FFA`dǬ,ס{Fo񳗢쫘nT:__Bjdfq'HayO4U[q?挅Dd b 1 c $A? ?3"`?02:t.Oy_;"`!:t.Oy_;",`@!xMQK/Q:̴^!TVXmB65ҤJugeaSK~D-lkK!QqsOw|( 88* gCmfذ~ĶXHQ3ap^RHz=vm?8p&E>.P?[<?\¨=#(n ik/!\߼oI̹?#i0A (^ڙ#TRXfd v5-:I{ϩ"Ej;us\K*^A5Z>䝊0"Kqb#lddk|nns9KУͫF0)HCn#X6kF0NX`4FN&]֡c@ɽQTZs` 3"b/^C0),kuDd b 2 c $A? ?3"`?12}40U^,N`!}40U^,N0HxMQ=KA}Ss??l$ha$XSO Cr$]* XZbg+Vk;%`]Oqaμy!pK%N# }7.#1 ${^?*]=6 -Y /NE+32vlisWk2sVM(pi"kiM~AL*ַ/Y’w]'m;.j6_t\sͩ]BXQ%T#TL֫DgĬ }9gct ^қZK9B=n^5EA^}Z%rIOlK1qZQNjJ؞8 WXW@ʿ#Lí:E@(G\Dܳ~ԔF/|wDd b 3 c $A ? ?3"`?22T;oƠkٵTgUL`!T;oƠkٵTgU,`@!xMQK/Q:LBDbCE6,TX`ФJugeaSK@"v~Rj$!ny0eG%v- u/ė6#4٥cmuy .P?<?R¨=#( kP3^¸ߑX m1@MaN PO772݊0 VVqFO4l&bv3nE675s =NO+b]4EIAZ}%rIO\[1q:(a5b%p>5u>^g՚[kQ\{FIYdQd{sDd b 4 c $A!? ?3"`?32xELs)ۮ;Z`!xELs)ۮ;ZxuR=KP=ﵩVETmQĖb+5jJkKS9,(5 X#{rsy3 bI9c.bl:h9?oNB~4I!L[Fe3S+@Qz\.E:;pS frҒfU[(m_T/ikcyKQ"#L8YγӵJ1\ɾ? ">\ 1H?mXhqLWVŝr,z-[)=<*3Y= ܭ]R(Ơv֐)eYǮS/mJiQ71+#C?(f;NLEv$6Y7AB#8y 5KzDd Tb 5 c $A"? ?3"`?42-2)%=ڎ}Ǐ`!-2)%=ڎ}6 XJxMQ=OA}q܁G0ΏN Z!$JbE:+m; 4xV&r7;ٷ3of2t08 JVKI6zo1tAK# <#t>YG®lej;,݂ .߲VgkbѴŧ .>dgsQED ӀF ʞW#T҉,XJnrn-Z\wRSF@ NL:UsXP.j[9%/1 SzlJ>R(~݂w\GhF09ȫ/nCX6m~F0NT`5 iXMr{C{!!,~E45)owr,]+W #Fq,SDkmMe9Ӌ"yDd b 6 c $A#? ?3"`?52 ~]`! ~],`@!xMQNA=3XIvYLGLl\h!W]D,lL`h- xg\3}eQpT!J^O96"1pFi G5)Ud#e7scl2ˠ`˔g_\Vgd[J 4w%ьigɛ&¢tZP^[[OPTȦrK`U*^d+vfl!x]xVtjˆ/3 "vbʸ2݂tgjF)HcnD>k~F0NX`4FcgWP1i_(tUo8e@Fy WA0),sDd b 7 c $A$? ?3"`?62 F`R 7 5t0`! F`R 7 5txuR=KP=#(mJ5j_ 8AA\\]7''z_LEyܓλ0Re%挹F1:xG Rp>4(sExXDb_\"j6ռv`8PyZ"Ur3ӳ9m}r{6JdrIE'UHM4H;^,Sr3wGAė?we÷[ 2ǣ)R*kf1ʭZ1s*'j|r(UHY>O4GK~#5u&iTvkIBPO 傔:kw5&Ɉ-C228-#nܳ72xqyYfs]: IƫŒ#)">ќWob}Q8Dd b 8 c $A$? ?3"`?72 F`R 7 5t`! F`R 7 5txuR=KP=#(mJ5j_ 8AA\\]7''z_LEyܓλ0Re%挹F1:xG Rp>4(sExXDb_\"j6ռv`8PyZ"Ur3ӳ9m}r{6JdrIE'UHM4H;^,Sr3wGAė?we÷[ 2ǣ)R*kf1ʭZ1s*'j|r(UHY>O4GK~#5u&iTvkIBPO 傔:kw5&Ɉ-C228-#nܳ72xqyYfs]: IƫŒ#)">ќWob}Q8Dd b 9 c $A%? ?3"`?82nIs Қ`!nIs xuR=KP=ﵱ6(`@b+5jJkKS.8989 (5N(>'7wϽaypXKsVAu6/v(@K2W}Gr].+Q&vTB vHxN98qjlhZڢYӖJEc+[-,oy6Fdr)Y'ux[!v^\+k]x ˟;oyTv, a 3mlo_A[MP*y">"Me~b DӶtshpN#v##*q !)S.B *vݠ|.Kѕ##Ӣn02cV9,{F~NQ̚}ѝ v$6[U9AB#8}=KDd b : c $A%? ?3"`?92nIs `!nIs xuR=KP=ﵱ6(`@b+5jJkKS.8989 (5N(>'7wϽaypXKsVAu6/v(@K2W}Gr].+Q&vTB vHxN98qjlhZڢYӖJEc+[-,oy6Fdr)Y'ux[!v^\+k]x ˟;oyTv, a 3mlo_A[MP*y">"Me~b DӶtshpN#v##*q !)S.B *vݠ|.Kѕ##Ӣn02cV9,{F~NQ̚}ѝ v$6[U9AB#8}=KDd b ; c $A&? ?3"`?:2#vBMRNh`!#vBMRN,`@!xMQKKQ 3ڋ"r UAVM*HTZTc s*-Akߢ}? ڴ ZEش soSt>aapT!JsnWY6|ϗ& 0pF :iG5(Uz{ցM6_ rE|/E+3V  g ʓ\/?V(<& |\!By/~-hQ{zY+~kwcț&’2 h7T/2 c $A&? ?3"`?=2#vBMRNy`!#vBMRN,`@!xMQKKQ 3ڋ"r UAVM*HTZTc s*-Akߢ}? ڴ ZEش soSt>aapT!JsnWY6|ϗ& 0pF :iG5(Uz{ցM6_ rE|/E+3V2#vBMRN*`!#vBMRN,`@!xMQKKQ 3ڋ"r UAVM*HTZTc s*-Akߢ}? ڴ ZEش soSt>aapT!JsnWY6|ϗ& 0pF :iG5(Uz{ցM6_ rE|/E+3VaapT!JsnWY6|ϗ& 0pF :iG5(Uz{ցM6_ rE|/E+3VaapT!JsnWY6|ϗ& 0pF :iG5(Uz{ցM6_ rE|/E+3V0"Heqb#tҮ/t+:BO&1'dqzZQ󪥑.F $P>OZz !F? +ӉggW쀵4)roh4Ө֜ XQ=]ԬxM^D4+N$泽̼S-Z)g>i:9T&diAj^O=)gY?njRBHjTR5r 'BrI-.UEs}[-2[8f%UmXa4g-x-ɳDd b J c $A+? ?3"`?I2mrPOX]8y|*`!mrPOX]8y|,`@!xMQ=OAtgC@ HA4|öȊRdcw(8e:*$DGOA@HB™].} cDPǤH!"$dhNEA/!Ŗ"~gc} 8Ouj2y%[Q@WBbygEb]g;]xjǭg͉hAQ77oa 2[̗>C }z߬dAHJ-hARHQI3S?iT2"˗ܷVG nv+Z ɏla.vWDӛt{ui*ѰKx9[΅zvBp!yȂj 9EVb3Sxˮځx.b]1Tl52E֘i!*ן^E@Qs*Dd b K c $A,? ?3"`?J2=bOMUri!aj`!=bOMUri!aj,`@!xMQK/Q:m2#DJG#,ibYA>h+ՅJĦD-I֖Rc%Q^Cܓ>a 8 JnWY6/ȗ1pFi OkR=Dʮ䚇d`g_\VgdJ4{Ĝh\h{>r!o dnB9j?xʠD6[lVkxeN !5W(9534J.#x]xZpˆ/3'0sVbʸ217NX錛7tQRV_uG|҃ah5 iXXOO]CǤ^{{DfA2D^ä,7(2sDd J L C A-? "K22BL2+Q.P?[<?\¨==,mW_{ qGb}6.k9N7Myd܄r~>BePy<,7 flU ;򮝲*jPƺ06%A"J#dH*BFgrtm%gڑ1 'L8!]ӎWm颤 9-ҏ⹄# 8bjӰ>bs:5.u.:z^՚]kQ{BIYodQd6u7Dd b N c $A/? ?3"`?M2V|&K:sf% `!V|&K:sf%,`@!xMQK/Qh2#DJ"2چJ#54CRYY5{bc-+:C73 qTΘoMA_|mh g - zMJK{rjv%-qz9<>lgFFa4a9˫59Qv9N7MY 2 xj@)jCePy""/:v㦝=j n\uZR.BjtXɹaD(Q h,LĬgKY+!ܧ[޸\28=Q󢥑.J ހ$P6MzZz !F? +ɱ'gWP3iSn(XQ@Fyũ /a0),@uxDd b O c $A0? ?3"`?N29b`,a>`!9b`,a>*`@!xMQJA=3#ZbVA >:b`"]ȋ$SieaB[{-" 8垹{aP&Q8* g,@}d`qd{l)E0rrGxAJ$#ATYu\]*âhQqp%Fa4^Tke`u4/?ps־'1Hi#DMa% :PA刺;;PT.d`c^,7wym"4rnخU*J0ETMNNDC٢abYe3ږm_ӄ'4MZ~]iI>0vڶ|qM-h ~F7&RB ܊`?<[kTgi 82L71({<"sDd b P c $A1? ?3"`?O2q rL~ C:d (f`!q rL~ C:d (*`@!xMQK@h(PЂԴ vi)F-MvKKt\E$XߝQ<{w dG$1>$ZeӁmEy1 3`iJLQQIv'Lz\)IuO>JhvT+Xb4rCbjp=Vi"S\Ss;‰XX5nA5̧Ͳk[Y~%L6!] 5]Ғ!}^ `mZ!Bo5B.s+~c\nQJ @pFe0K"r/q({<>r Dd b Q c $A? ?3"`?2:t.Oy_;"`!:t.Oy_;",`@!xMQK/Q:̴^!TVXmB65ҤJugeaSK~D-lkK!QqsOw|( 88* gCmfذ~ĶXHQ3ap^RHz=vm?8p&E>.P?[<?\¨=#(n ik/!\߼oI̹?#i0A (^ڙ#TRXfd v5-:I{ϩ"Ej;us\K*^A5Z>䝊0"Kqb#lddk|nns9KУͫF0)HCn#X6kF0NX`4FN&]֡c@ɽQTZs` 3"b/^C0),kuDd b R c $A? ?3"`?2}40U^,N`!}40U^,N0HxMQ=KA}Ss??l$ha$XSO Cr$]* XZbg+Vk;%`]Oqaμy!pK%N# }7.#1 ${^?*]=6 -Y /NE+32vlisWk2sVM(pi"kiM~AL*ַ/Y’w]'m;.j6_t\sͩ]BXQ%T#TL֫DgĬ }9gct ^қZK9B=n^5EA^}Z%rIOlK1qZQNjJ؞8 WXW@ʿ#Lí:E@(G\Dܳ~ԔF/|wDd b S c $A ? ?3"`?2T;oƠkٵTgUv`!T;oƠkٵTgU,`@!xMQK/Q:LBDbCE6,TX`ФJugeaSK@"v~Rj$!ny0eG%v- u/ė6#4٥cmuy .P?<?R¨=#( kP3^¸ߑX m1@MaN PO772݊0 VVqFO4l&bv3nE675s =NO+b]4EIAZ}%rIO\[1q:(a5b%p>5u>^g՚[kQ\{FIYdQd{sDd b T c $A!? ?3"`?2xELs)ۮ;Z%`!xELs)ۮ;ZxuR=KP=ﵩVETmQĖb+5jJkKS9,(5 X#{rsy3 bI9c.bl:h9?oNB~4I!L[Fe3S+@Qz\.E:;pS frҒfU[(m_T/ikcyKQ"#L8YγӵJ1\ɾ? ">\ 1H?mXhqLWVŝr,z-[)=<*3Y= ܭ]R(Ơv֐)eYǮS/mJiQ71+#C?(f;NLEv$6Y7AB#8y 5KzDd Tb U c $A"? ?3"`?2-2)%=ڎ}`!-2)%=ڎ}6 XJxMQ=OA}q܁G0ΏN Z!$JbE:+m; 4xV&r7;ٷ3of2t08 JVKI6zo1tAK# <#t>YG®lej;,݂ .߲VgkbѴŧ .>dgsQED ӀF ʞW#T҉,XJnrn-Z\wRSF@ NL:UsXP.j[9%/1 SzlJ>R(~݂w\GhF09ȫ/nCX6m~F0NT`5 iXMr{C{!!,~E45)owr,]+W #Fq,SDkmMe9Ӌ"yDd b V c $A#? ?3"`?2 ~]`! ~],`@!xMQNA=3XIvYLGLl\h!W]D,lL`h- xg\3}eQpT!J^O96"1pFi G5)Ud#e7scl2ˠ`˔g_\Vgd[J 4w%ьigɛ&¢tZP^[[OPTȦrK`U*^d+vfl!x]xVtjˆ/3 "vbʸ2݂tgjF)HcnD>k~F0NX`4FcgWP1i_(tUo8e@Fy WA0),sOh+'0   @ L X dpxSI202: Week 1 Jim Salmon Normal.dotvincent4Microsoft Office Word@`4<@m"@"@(7"A &@՜.+,D՜.+,DocumentSummaryInformation8CompObjqT hp   Computer Science Dept., USNA&AK' SI202: Week 1 TitleH 6> MTWinEqns   FMicrosoft Office Word Document MSWordDocWord.Document.89q@@@ NormalCJ_HaJmH sH tH H@H Heading 1$ & F @&>*Z@"Z P Heading 2dd@&[$\$5CJ$PJ\aJ$nHtHDA@D Default Paragraph FontViV  Table Normal :V 44 la (k@(No List DZ@D Plain TextCJOJQJ^JaJLC@L Body Text Indent h^h4 @4 Footer  !.)@!. Page NumberPR@2P Body Text Indent 2 ^PS@BP Body Text Indent 3 ^4B@R4 Body Text$a$.Oa. P mw-headlineN^@rN P Normal (Web)dd[$\$ PJnHtH4U@4 P Hyperlink >*ph qL              qL"234?@BC $'PS}stDT !34f"^89JK}& b c  A      ( ) o p 3 4 RS[\ !DEghiqr<=]^hiPQefvxz{|}~ !"#$%&'()*+,FGgiTsz23jknopq#pq$%^_o p !!=!>!!!!!""X"Y"""""D#E#G#H#I#J#K#L#M#N#O#P### $#$$$%$&$r$s$$$"%#%8%C%W%l%%%%%%%%%&& &&&&&&&&&z&{&&&&&''''=(>(F(H(J(K(L(M(N(O()!)#)$)%)&)')()))*))))))))))6*7*>*@*A*B*C*D*E********+++1+2+3+++++7,8,9,:,j,k,x,,,,,,,,,,,, -L-g-h---. .!.".#.$.%.R.S.T/U/`0a00000001 111+121F1O1[1}111111227282<2=22222333U3V3Z3[3333333N4O4S4U4V4W4X4Y4Z4[4\4445555t5u5x5y55555n6o6u6v666666M7N7z7{7~777777K8N8Q8888888 9 999:9=9>9999999999@:A:D:E::::::;;;>;?;~;;;;;;;;;<<==========================c?d?e?f?g?h?i?j?k?l?m?n?o?p?q?????@@@@@@@@.A/A3A4AaAbAfAgAAAAAAAAAAAA"B$BBBBBBCCCCCCC;C@ABDEGIJKLNPQSTVWXZ\^`acegiknps~  30.(  ;"$ &(*-0359e<?VBGdJ9LNjPDRx8$2 ,.0258<=?CFHMORUY[]_bdfhjlmoqr|}- #%(@BJbdf~n13ay{|  4 6 A Y [ Z r t I a c h ?WYp !#nyi %=?F^`!9;kv $&1IKu+-6NPTln   " , D F N f h ! !E!]!_!e!}!!!!!!!!!""`"x"z""""##!#'#?#A#(-(/(((((((())n)));2;4;J4J6JqL:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: !#*!!)+4LNRjlt::::::l ,2$Xtfu\]H_(@Y (  HB  C DHB  C DHB  C D"HB  C D#HB  C D$HB  C D(HB  C D'HB  C D%HB  C D&HB  C D-HB  C D.HB  C D/HB  C D2HB  C D1HB  C D0B    4  HB  C D5HB  C D6HB  C DHB  C DHB  C DHB  C DHB  C DHB  C D HB  C DHB  C D HB  C D HB  C DHB  C DHB  C DHB  C DHB  C DHB  C DHB  C DHB  C DHB  C DHB  C DHB  C DHB  C DHB  C D8HB  C D9HB  C D;HB  C D<6r   >6r   =HB  C D@HB  C D?HB  C DFHB  C DEHB  C DDHB  C DCHB  C DBHB  C DAHB  C DLHB  C DJHB  C DKHB  C DIHB  C DHHB  C DSHB  C DRHB  C DQHB  C DPHB  C DOHB  C DNHB  C DHB  C DHB  C DHB  C D HB  C D HB  C DHB  C DHB  C DNB  S D NB  S D!HB  C DHB  C D)NB  S D+NB  S D*HB  C D,HB  C D3HB  C D7HB  C D:HB  C DGHB  C DMHB  C DTHB   C DWHB   C DUHB   C DVB S  ?^_c d fghijvijklmnstuvwx8%9%%%%%>(?(@(A(B(C(F()))))!)7*8*9*:*;*<*>*WGXGeGqL c t$ $t$ $ t@ @ tpppt@ }@ zt$ }$ ztJJt@ ^@ t$ ^$ tp| |t K t@ xttxxt t 4tt44ttxxt t _D%_t   t tHH t,, t\ \ t P$Pt,H,4t H 4t@ d tht@ h@ t@ \\t!|!t<|<t|t|t,@,t | t T%Tt$$tt$t ! !t<<ttddtxxt t L%LtHt,s,t s t dt,l,t l t txxttd1t 1t&@t8&8@t@tx@xt @ t@t@t8@8tWWt8t8tH|Ht|tx8xt\ t,,t\ \ t  ttt88tdt  T t xTxt  t )?D : )?: )?$P:)?9)?:SoorL\wwrLB*urn:schemas-microsoft-com:office:smarttagscountry-region9*urn:schemas-microsoft-com:office:smarttagsplace8*urn:schemas-microsoft-com:office:smarttagsCity9*urn:schemas-microsoft-com:office:smarttagsState ,2X^MSG$J$3%6%?%B%%&D&G&m&p&''x({(((I)L)))1122O3S3333345557799+:1:= =q>u>>>>>>>>C?CzFFFFIIgKgKiKiKjKjKlKmKoKpKrKsKKKrLCK abp q ] _ N Z jlZclm!hk)qvNZop$ ' A!D!!!!!""\"_"""##$$;%<%%%%%&&&&''E)G)))U+Y+,,"-&-N-R-//1122\4g4b6m666678899E:P:::?;J;r;|;;;=====>????BBZG[G7H;HHHHHJJKKgKgKiKiKjKjKlKmKoKpKrKsKKKKKLLrL3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333i?l?eAeAAABBCCCCCCCCCCCCHDIDDDDDEEhGkGGGGGGH,H,HHH I IhIhIKKfKgKgKiKiKjKjKlKmKoKpKrKsK~KKKKKKKKKKKKKKoLrLgKgKiKiKjKjKlKmKoKpKrKsKKKrLm4(\ΡF6 (6xCQ21ne<^**-NnY)f|^8S !@B8>`@`@`D`F`H`@`R`@`@``@``@``` ``0@UnknownGz Times New Roman5Symbol3& z ArialG WP MathASymbol?Wingdings 3G  MS Mincho-3 fg?5 z Courier New;Wingdings"1h6ئJئ4ئA &@&A &@&!4dAKAK 2QHP ? &2 SI202: Week 1 Jim SalmonvincentT