9 Pages

pset1_sol

Course: IT CMPS314, Spring 2010
School: École Normale Supérieure
Rating:
 
 
 
 
 

Word Count: 2502

Document Preview

Discrete CS103X: Structures Homework Assignment 1: Solutions Due January 25, 2008 Exercise 1 (10 Points). Prove or give a counterexample for each of the following: (a) If A B and B C, then A C. (b) If A B and B C, then A C. Solution: (a) Consider any element a A. Since A B every element of A is also an element of B, so a B. By same reasoning, a C since B C. Thus every element of A is an element of C,...

Register Now

Unformatted Document Excerpt

Coursehero >> Other International >> École Normale Supérieure >> IT CMPS314

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Discrete CS103X: Structures Homework Assignment 1: Solutions Due January 25, 2008 Exercise 1 (10 Points). Prove or give a counterexample for each of the following: (a) If A B and B C, then A C. (b) If A B and B C, then A C. Solution: (a) Consider any element a A. Since A B every element of A is also an element of B, so a B. By same reasoning, a C since B C. Thus every element of A is an element of C, so A C. (b) Let A = {1}, B = {1, {1}}, and C = {{1, {1}}, 3, {4}}. These sets satisfy A B and B C, but A C. / Exercise 2 (10 Points). If a(t), b(t), and c(t) are the lengths of the three sides of a triangle t in non-decreasing order (i.e. a(t) b(t) c(t)), we define the sets: X := {Triangle t : a(t) = b(t)} Y := {Triangle t : b(t) = c(t)} T := the set of all triangles Using only set operations on these three sets, define: (a) The set of all equilateral triangles (all sides equal) (b) The set of all isosceles triangles (at least two sides equal) (c) The set of all scalene triangles (no two sides equal) Solution: (a) We require a(t) = b(t) and b(t) = c(t) (this obiviously implies a(t) = c(t)), so the set is X Y (b) An isoceles triangle t can have 1. a(t) = b(t), or 2. b(t) = c(t), or 3. a(t) = c(t). 1 Now we have assumed that a(t), b(t), and c(t) are in non-decreasing order, so the last condition holds if and only if both the first two do. So the required set is X Y. (c) A scalene triangle has its two smaller sides a(t) and b(t) unequal (set T \ X) and its two larger sides b(t) and c(t) unequal (set T \ Y ). Since the sides are listed in the non-decreasing order, either of the above conditions guarantess a(t) = c(t). So the required set is (T \ X) (T \ Y ). An alternative argument is: A triangle is scalene if and only if it is not isosceles. So using the result of the previous part, the set of scalene triangles is T \ (X Y ). It's easy to confirm that the answers given by the two arguments are actually the same - this is an instance of a general rule called De Morgan's Law. Exercise 3 (10 Points) The Fibonacci sequence is defined as follows: a1 = 1 a2 = 1 an = an-1 + an-2 for all n 3 Prove that ( 1+2 5 )n - ( 1-2 5 )n an = 5 Solution: The proof proceeds by strong induction. Let P (n) denote the hypothesis 2 2 2 2 that an = . For n = 1, a1 = = 5 = 1. Thus, P (1) is 5 5 5 true. Similarily, P (2) is true since a2 = 1. Now we assume that the claim holds for all integers between 1 and n (n 3). We need to show that P (n + 1) is true to complete the proof. From definition, an = an-1 + an-2 for all n 3 ( 1+ 5 n ) -( 1- 5 )n ( 1+ 5 )-( 1- 5 ) 2 So, an+1 = an + an-1 ( 1+2 5 )n - ( 1-2 5 )n ( 1+2 5 )n-1 - ( 1-2 5 )n-1 = + 5 5 1+ 5 n-1 1- 5 1+ 5 - (( 2 ) + 1)( 1-2 5 )n-1 (( 2 ) + 1)( 2 ) = 5 3- 5 1- 5 n-1 3+ 5 1+ 5 n-1 - ( 2 )( 2 ) ( 2 )( 2 ) = 5 1+ 5 2 1+ 5 n-1 ( 2 )( 2 ) - ( 1-2 5 )2 ( 1-2 5 )n-1 = 5 1+ 5 n+1 1- 5 n+1 ( 2 ) -( 2 ) = 5 This proves the claim for n + 1 and completes the proof by strong induction. Exercise 4 (10 Points) Prove by induction: (a) n i 2i = (n - 1) 2n+1 + 2 i=1 (b) n n 2 i = i=1 i=1 3 i Solution: (a) The proof proceeds by induction. For n = 1, we have 1 i 2i = 2 = 0 21+1 + 2, i=1 and the claim holds. Now assume that for n = k, Then for n = k + 1, we have k+1 k k i=1 i 2i = (k - 1) 2k+1 + 2. i2 = i=1 i=1 i i 2i + (k + 1) 2k+1 = (k - 1) 2k+1 + 2 + (k + 1) 2k+1 = (2k) 2k+1 + 2 = (k) 2k+2 + 2 Hence the claim holds for k + 1. This completes the proof by induction. 3 (b) It is known that n i=1 i = n(n + 1)/2. Thus we need to prove that n i3 = (n(n + 1)/2)2 i=1 The proof proceeds by induction. For n = 1, we have 13 = (1(1 + 1)/2)2 = 1. Assume that for n = k, k i3 = (k(k + 1)/2)2 . Then for n = k + 1, we have i=1 k+1 i3 = (k(k + 1)/2)2 + (k + 1)3 i=1 = (k + 1)2 (k 2 + 4k + 4) 4 2 (k + 1) (k + 2)2 = 4 = ((k + 1)(k + 2)/2)2 Hence the claim holds for k + 1. This completes the proof by induction. Exercise 5 (10 Points) Consider n lines in the plane so that no two are parallel and no three intersect in a common point. What is the number of regions into which these lines partition the plane? Prove. For example, the lines in the following diagram partition the plane into seven regions: Solution: The answer must be some function of n, which we will denote by F (n). We can consider putting down the lines one after the other on the plane (in any arbitrary order), with the total number of regions increasing at each step. After putting the first n - 1 lines we have F (n - 1) regions. When we draw the nth line, we know it must 4 intersect all of the other n - 1 lines since no two lines are parallel. Since no three share an intersection, this new line has exactly n - 1 intersection points with the other lines. These intersections mean that the new line goes through n of the existing regions of the plane (at every intersection point, the line leaves one existing region and enters another, and does not change regions before the first intersection, after the last, or between any two intersections). The new line divides each region through which it passes into two, so n new regions are created. So F (n) = F (n - 1) + n Its easy enough to expand this sum as: F (n) = F (n - 1) + n = (F (n - 2) + (n - 1)) + n = (F (n - 3) + (n - 2)) + (n - 1) + n . . . = F (0) + 1 + 2 + + (n - 1) + n n(n + 1) (recall the sum of the first n natural numbers) = F (0) + 2 Now when there are no lines, there is only one region (the whole plane), so F (0) = 1. So n(n + 1) F (n) = + 1. 2 This, however, is not a formal proof! Rather, that was an outline of the kind of reasoning you could use to realize that the right answer is n(n + 1)/2 + 1. The actual proof proceeds by induction. For the basis, with 0 lines there is 1 region so the claim holds. Now assume it holds for n = k. When we draw the (k + 1)st line, we know it must intersect all of the other k lines since no lines are parallel. Since no three share an intersection, this new line has exactly k intersection points with the other lines. These intersections mean that the new line goes through k + 1 of the existing regions of the plane and divides each of those in two, such that k + 1 new regions are created. Adding this to the existing tally gives a total of k+1+k(k+1)/2+1 = (k 2 +3k+2)/2+1 = (k+1)(k+2)/2+1 = (k+1)((k+1)+1)/2+1 lines, so the claim holds for k + 1. This completes the proof by induction. Exercise 6 (10 Points) What's wrong with the following proof? We prove that for any n N and any a R, an = 1. The proof proceeds by strong induction. For the induction basis, a0 = 1 and the claim holds. Assume that the claim holds for all k up to n. Then an+1 = 11 an an = =1 an-1 1 5 This proves the claim. Solution: In the very first induction step we are assuming that the claim holds for n = 0 and need to prove correctness for n = 1. At that point the proof assumes that the claim also holds for n = -1, which was never proved and is not correct general. in Exercise 7 (10 Points) Prove the following about strong induction principle, principle of induction, and well ordering: (a) Prove the induction principle from the principle of strong induction (b) Prove the principle of strong induction from the principle of well ordering (c) Prove the principle of well ordering from the induction principle Solution: (a) Given a set A of positive integers, assume the conditions for the induction principle: . 1 A -- (1) . If k A, thenk + 1 A -- (2) hold for set A. We need to show that A = N+ using the strong induction principle. It follows from (1) that 1 A. Assume that {1, 2, ..., n} A. This implies that n A and then from the induction premise (2), n + 1 A. Thus by strong induction all positive integers belong to A and so, N+ A. But A is a set of positive integers and therefore A = N+ . This completes the proof. (b) Consider the premises of strong induction - a set A of positive integers exists such that 1 A and, if {1, 2, ..., n} A, then (n + 1) A for any n N+ . Consider the set B = N+ \ A, the set of all positive integers not in A. Assume for the sake of contradiction that B is nonempty. By the well ordering principle, B must have a least element. We know that 1 B because one of the induction premises / is 1 A. Thus there is some least element b B with b > 1, which implies {b - 1, b - 2, ..., 1} A. But then from the second strong induction premise, b = (b - 1) + 1 A, which contradicts the earlier assertion that b A. Thus the / assumption that B is nonempty is incorrect, and so B = and A = N+ . Thus, assuming the well-ordering principle, if the premises of strong induction hold for a set A then A = N+ , which proves the strong induction principle. (c) To simplify things we would first prove that strong induction follows from the induction principle, so proving well-ordering from strong induction will suffice. Given a set A of positive integers, assume the conditions for the strong induction principle: 6 . 1 A -- (1) . If {1, 2, ..., k} A, then k + 1 A -- (2) hold for set A. We need to show that A = N+ using the induction principle. It follows from (1) that 1 A. Assume that n A. Let P (n) be the following proposition: {1, 2, ..., n} A. For the base case, P (1) follows trivially from (1). Now assume P (n) holds, and consider P (n + 1). From our induction hypothesis and (2), n + 1 A, or in other words P (n) implies that {1, 2, ..., n + 1} A, which means P (n + 1) is true. By the induction principle, P (n) holds for all positive integers n, so N+ A. But A is a set of positive integers, so A = N+ . This proves the result. Now we prove the well-ordering principle from strong induction. The proof proceeds by contradiction. Assume there is a nonempty set A of positive integers without a least element. We will use strong induction to show that this cannot be. Since 1 is the smallest positive integer, 1 A since it would be the least / element. Assume that the positive integers from 1 to k are not in A. Then if (k + 1) A, (k + 1) would be the smallest element so (k + 1) A. Then by strong / induction all positive integers are not in A, so A = , a contradiction. Therefore the assumption was incorrect and any nonempty set of positive integers must have a least element. Thus the well-ordering principle holds if the induction principle holds. To conclude, since each principle can be proved from the other, any problem solvable with one can also be solved by the other. Thus the well-ordering principle, induction principle, and the induction principle are equally powerful. Exercise 8 (10 Points) Prove the following: (a) Prove that 3 is irrational (b) Prove that the sum of a rational number and an irrational number results in an irrational number Solution: (a) Following the proof that 2 is irrational in the notes, we start by assuming 3 is actually a rational number p/q, where p and q are integers with no common divisor and q = 0, and show this leads to a contradiction. Squaring, 3 = p2 /q 2 or p2 = 3q 2 7 Now every integer is of the form 3n, 3n + 1or3n + 2, and the squares in the three cases are 9n2 , 9n2 + 6n + 1 and 9n2 + 12n + 4. The first is divisible by 3 and the second and third leave a remainder of 1 when divided by 3. So a perfect square is a multiple of 3 if and only if its square root is divisible by 3. In other words, p must be divisible by 3, say p = 3k for some integer k. But then 9k 2 = 3q 2 or, q 2 = 3p2 and by the same argument, q must also be divisible by 3. This contradicts our assumption that p and q have no common divisor, and so 3 must, in fact, be irrational. (b) The proof proceeds by contradiction. Assume that the sum of a rational number and an irrational number results in a rational number. Let us denote the irrational number by x and the other two rational numbers as a/b and c/d respectively, where a, b, c, d are integers and b, d = 0. Now, from our assumption a/b + x = c/d or, x = c/d - a/b cb - ad bd which is rational. But this contradicts our assumption that x is irrational. This completes the proof. or, x = Exercise 9 (10 Points) Another general proof technique is proof by contrapositive. To prove a statement of the form "If A, then B" it suffices to prove "If not B, then not A". Using the contrapositive technique, prove that if the product of integers p and q is odd, then both p and q must be odd. Solution: We prove this by the contrapositive method. Thus we need to prove that if not both p and q are odd, then their product pq is not odd (i.e. it must be even). Let p = 2k (even) and q = 2l + 1 (odd), for some k, l Z. Now the product pq = 2k (2l + 1) = 4kl + 2k = 2(2kl + k), is even. Similarly, for the case when both p and q are even, pq is again even. Hence, if not both p and q are odd, then their product pq is not odd. This completes the proof by contrapositive method. Exercise 10 (10 Points) Given that a, b, and c are odd integers, prove that ax2 + bx + c = 0 does not have a rational root. Solution: The proof proceeds by contradiction. Assume that ax2 + bx + c = 0 does have a rational root m/n, where m, n Z and n = 0, when a, b, and c are odd integers. 8 We can assume without the loss of generality that m and n do not have any common factors. The equation can be re-written as a(m/n)2 + b(m/n) + c = 0 or, am2 + bmn + cn2 = 0 Let us first consider the case when m is even. Then n is odd, since otherwise m and n will have 2 as a common factor. Now because square of an even number is even and square of an odd number is odd, am2 + bmn is even and cn2 is odd. Hence am2 + bmn + cn2 cannot be 0. Next let us consider the case when m is odd. If n is even, a similar argument as above can be used to show that am2 + bmn + cn2 cannot be 0. If n is odd, then all of am2 , bmn and cn2 are odd. However, the sum of three odd numbers cannot be 0. Thus, we have arrived at a contradiction and m/n cannot be a root of the equation. This completes the proof. 9
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

16. - IT - CMPS360
Group 8Project Number Version Print Date Page1 1.0 12/04/2010 Page 1 of 6Customer Relationship Management Helps Chase Card Services Manage Customer CallsSIGNATURE BLOCKStatement Team Member Tracy Tillet Evelyn Tsai Ian Hsieh Lycieni Moguel Tirese Lin
16. - IT - CMPS324
ETKLIAssignment Number Version PrintDate PagePhase2 1.0 18/03/2010 Page1of 23ProjectManagementPlan NewspaperDelivery SystemSIGNATUREBLOCKStatement TeamMemberIdidmyshareofthework,andIhaveageneralunderstandingofthecontentsofthe assignment.Contributi
UIllinois - MATH 442 - 30354
MATH 110 EXAM #1Please answer the following questions. Because this test is open book and open note, you will not get credit for answers unless you demonstrate how you arrived at them. In short, please show all work.Problem 1. Please nd the specic solut
UIllinois - MATH 442 - 30354
M ATH 1 52, FALL 2004: MIDTERM # 220Problem #1 a) Using Fourier Transform solve the initial value roblem with diffusion equation with variable dissipationfor K > 0 , -cc < x < cc and t > 0. b) Write the solution u above more explicitly when 4 ( x ) = e
UIllinois - MATH 442 - 30354
MATH 152, FALL 2004: MIDTERM # IProblem $1 (5 1 Let u ~ ( xt , and u 2(x,t ) denote the solutions of the equation )with initial and b oundary conditions respectively u1 ( x, 0) = gl ( x), u1 ( 0, t ) = f l ( t), u l ( L , t ) = h l(t) a nd u 2(x,0) = g
UIllinois - MATH 442 - 30354
MATH 152, FALL 2004: FINALThere are five problems. Do all of them. Total score: 160 points.Problem # 1, ( 25 p oints) For both of the following functions f on [0, 11, s tate whether the Fourier cosine series on [0, I] converges in each of the following
UIllinois - MATH 442 - 30354
UIllinois - MATH 442 - 30354
UIllinois - MATH 442 - 30354
UIllinois - MATH 442 - 30354
UIllinois - MATH 442 - 30354
École Normale Supérieure - MATH 442 - 30354
École Normale Supérieure - MATH 442 - 30354
École Normale Supérieure - MATH 442 - 30354
Instructions: Print your name and student ID number in the spaces below. Name: _ Student ID:_Exam 1, PDE I (Math 4347) 9/23/2009, Wednesday All problems have equal weigh! You are not allowed to use your notes and calculators. Show your work clearly and c
École Normale Supérieure - MATH 442 - 30354
École Normale Supérieure - MATH 442 - 30354
Introduction to PDE's: (Strauss, 1.1) (Haberman, 1.1) t const coeff(e ) undetermined coefficients PDE's vs. ODE's methods of solutionvariation of parametersPDE's have the complication of more than 1 independent variable For PDE's: more difficult to "
École Normale Supérieure - MATH 442 - 30354
École Normale Supérieure - MATH 442 - 30354
Name:110 MIDTERM 2Some potentially useful formulae: 1x (e + ex ). 2 (ii ) The Fourier coecients of f (x) for the eigenfunctions cos(nx/) and sin(nx/) on the interval (, ) are nx 1 f (x) cos An = dx (i ) cosh x = Bn = 1 f (x) sinnx dx. In this case th
École Normale Supérieure - MATH 442 - 30354
École Normale Supérieure - MATH 442 - 30354
ECE 470: I R H 1 S Solution (Problem 2.1)S B O 10, 2009Not depending on choice of frames implies that for any rotation, the dot product between two vectors will remain constant. Thus, we need to show for any R that is a rotation matrix that vT v2 = (Rv1
Allegheny - ACCT - 1222
Chapter 3Management Fraud and Audit RiskMy actions are inexcusable. I'm sorry for the hurt that has been caused by my cowardly behavior. - Scott Sullivan, former WorldCom CFO, at his sentencing. "It takes 20 years to build a reputation and five minutes
University of North Carolina, Wilmington - ECON - 210
Chapter 1 Practice Exam Intro to Business & Economic Statistics - Anderson Williams
Berkeley - ECON - 175
NAME(Last,First): Instructor:RonaldLee March9,2010 SID: DepartmentsofDemographyandEconomics UniversityofCaliforniaBerkeleyDemography/EconomicsC175MidtermExamination AnswerKey Pleaseanswerallpartsofallquestions,usingthespacesontheexaminationitself,andw
Berkeley - ECON - 175
Lecture 19. MalthusRonald Lee Econ/Demog 175 March 30, 2010Ronald Lee, UC Berkeley, 2010 1Announcement Exams will be returned at end of class. Must be picked up in person! Alternatively, the MT can be picked up in person at the main office in Demograp
Berkeley - MATH - 185
Mathematics 185 Intro to Complex Analysis Fall 2009 M. Christ Hints for Problems from 4.3( 4.3.2 (i) For real x = 0, sinx2 x) is half of the real part of 1e2 . Therefore we need to x 2ix calculate half of the real part of 1e2 dx. x (ii) This is the type
Berkeley - MATH - 185
Mathematics 185 Intro to Complex Analysis Fall 2009 M. Christ Solutions to Selecta from Problem Set 122 sin2 (z ) n= (z4.4.4 Show that= n)2 for all z C \ Z.Solution. We deduce this from the formula cot(z ) = z 1 +n=0(z n)1 + n1 ,(1)where the sum
Berkeley - MATH - 185
Mathematics 185 Intro to Complex Analysis Fall 2009 M. Christ Solutions to Selecta from Problem Set 11 4.3. Calculate PV dx x(x2 1) .Solution. (I will not use the discussion in the text, but will work this one from scratch.) Ack! The integrand has not o
University of Texas - BIO 301M - 52435
University of Texas - BIO 301M - 52435
University of Texas - BIO 301M - 52435
University of Texas - BIO 301M - 52435
University of Texas - BIO 301M - 52435
University of Texas - BIO 301M - 52435
University of Texas - BIO 301M - 52435
homework 01 GADHIA, TEJAS Due: Jan 27 2007, 4:00 am Question 1 part 1 of 1 10 points A spherical balloon with radius r inches has volume 43 r 3 . Find a function that represents the amount of air required to inate the balloon from a radius of r inches to
University of Texas - BIO 301M - 52435
homework 02 GADHIA, TEJAS Due: Jan 31 2007, 4:00 am Question 1 part 1 of 2 10 points The tallest volcano in the solar system is the 24 km tall Martian volcano, Olympus Mons. Assume: An astronaut drops a ball o the rim of the crater and that the free fall
University of Texas - BIO 301M - 52435
homework 03 GADHIA, TEJAS Due: Feb 7 2007, 4:00 am Question 1 part 1 of 2 10 points A particle travels to the right at a constant rate of 5.1 m/s. It suddenly is given a vertical acceleration of 2.8 m/s2 for 4.7 s. What is its direction of travel after th
University of Texas - BIO 301M - 52435
homework 04 GADHIA, TEJAS Due: Feb 14 2007, 4:00 am Question 1 part 1 of 1 10 points Despite a very strong wind, a tennis player manages to hit a tennis ball with her racquet so that the ball passes over the net and lands in her opponents court. Consider
University of Texas - BIO 301M - 52435
homework 05 GADHIA, TEJAS Due: Feb 21 2007, 4:00 am Question 1 part 1 of 1 10 points Given: g = 9.8 m/s2 . To test the performance of its tires, a car travels along a circular track of radius R = 379 m. The track is perfectly at (no banking). The car incr
University of Texas - BIO 301M - 52435
homework 06 GADHIA, TEJAS Due: Feb 28 2007, 4:00 am Question 1 part 1 of 2 10 points While skiing in Jackson, Wyoming, your friend Ben (75 kg) started his descent down the bunny run, 11 m above the bottom of the run. If he started at rest and converted al
University of Texas - BIO 301M - 52435
homework 07 GADHIA, TEJAS Due: Mar 7 2007, 4:00 am Question 1 part 1 of 1 10 points Two identical stars, a xed distance D apart, revolve in a circle about their mutual center of mass, as shown below. Each star has mass M and speed v . G is the universal g
University of Texas - BIO 301M - 52435
homework 08 GADHIA, TEJAS Due: Mar 21 2007, 4:00 am part 1 of 2 Question 1 part 1 of 1 10 points A rocket is red vertically upward. At the instant it reaches speed of 281 m/s, it explodes into three fragments with equal masses. Immediately after the expos
University of Texas - BIO 301M - 52435
homework 09 GADHIA, TEJAS Due: Mar 28 2007, 4:00 am Question 1 part 1 of 3 10 points A ball at the end of a string of length 1.7 m rotates at a constant speed in a horizontal circle. It makes 5.2 rev/s. What is the period of the balls motion? Answer in un
University of Texas - BIO 301M - 52435
homework 10 GADHIA, TEJAS Due: Apr 4 2007, 4:00 am Question 1 part 1 of 1 10 points A uniform rod of mass 4.4 kg is 17 m long. The rod is pivoted about a horizontal, frictionless pin at the end of a thin extension (of negligible mass) a distance 17 m from
University of Texas - PHY 303K - 52033
Percentage Probability Table for Condence Level Range Determinations 1 The percentage probability, Prob(within t ) = 2 t 0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 3.0 3.5 4.0 4.
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 2 Due: Sep 15 2006, 4:00 pm Inst: Eslami This print-out should have 12 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. AP Physics C St
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 3 Due: Oct 4 2006, 9:00 pm Inst: Eslami This print-out should have 8 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. AP Physics C Stud
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 4 Due: Oct 11 2006, 10:00 pm Inst: Eslami This print-out should have 4 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. AP Physics C St
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 5 Due: Oct 26 2006, 11:00 pm Inst: Eslami This print-out should have 4 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. I want everyone
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 6 Due: Oct 30 2006, 11:00 pm Inst: Eslami This print-out should have 12 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. I hope by now,
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 7 Due: Nov 6 2006, midnight Inst: Eslami This print-out should have 11 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. You want to mas
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 8 Due: Nov 13 2006, midnight Inst: Eslami This print-out should have 17 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. You want to ma
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 9 Due: Dec 2 2006, midnight Inst: Eslami This print-out should have 12 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. You want to mas
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 10 Due: Dec 5 2006, midnight Inst: Eslami This print-out should have 15 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. 001 (part 1 of
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 11 Due: Dec 15 2006, midnight Inst: Eslami This print-out should have 17 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. 001 (part 1 o
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 12 Due: Dec 21 2006, midnight Inst: Eslami This print-out should have 14 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. Please notice
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 14 Due: Dec 21 2006, midnight Inst: Eslami This print-out should have 18 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. Please take n
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 15 Due: Jan 16 2007, midnight Inst: Eslami This print-out should have 16 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. 001 (part 1 o
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 16 Due: Jan 22 2007, midnight Inst: Eslami This print-out should have 11 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. 001 (part 1 o
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 17 Due: Jan 29 2007, midnight Inst: Eslami This print-out should have 13 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. 001 (part 1 o
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 18 Due: Feb 7 2007, midnight Inst: Eslami This print-out should have 17 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. 001 (part 1 of
University of Texas - PHY 303K - 52033
Thevalingam, Donald Homework 19 Due: Feb 19 2007, 6:00 pm Inst: Eslami This print-out should have 10 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. The due time is Central time. Lazy Kids! You