--View the Course Syllabus
--
Check your Grade
Monday and Tuesday, July 2-3: Problems 5.4.3,7,11,13,17 and
5.5.3,5,9,11,19,21
Thursday, July 5: Problems 5.6.3,5,13,15,35,41
Monday, July 9: Problems 5.7.17,19,20 and read section 7.2
Tuesday, July 10: Problems 7.2.3-8,21,22,23,24 and read section 8.1
Thursday, July 12: Problems 8.1.1,3,9-25,33,35,38,39,40,41,43,45,46,47
Monday, July 16: Problems 8.2.3,7,9,10,13,17,19,21,23,27,29,31,33,45,55
Tuesday, July 17: Problems 8.3.1,5,11,13,15,17,19,21,27,37
Thursday, July 19: Problems 8.4.2,3,4,5,7,8,19,21,23,33,34,35
Monday, July 23: Problems 8.5.6,10,12,14,20,22,24 and 8.6.1,2,4,8
Tuesday, July 24: 8.6.11,12,21,22,33 and 8.7.1-16
Your corrected optional homeworks will be available to pick up in an envelope
outside my office door on Wednesday after 11am.
Thursday, July 26: 5.10.6,10,12,16,18,23
Monday, July 30: Read the first 3 pages of section 6.2 and do problems 1-12
Tuesday, July 31: 6.2.13,14,15,16,21,22,27,30,49
Thursday, August 2: 6.3.1,2,3,5,7,14,17,21,23,24
Monday, August 6: 6.4.1,3,5,6,10,15
Tuesday, August 7: 6.5.1,3,9,17,21,22,33,35 and 6.7.1,2,5,9
Section 5.8 is about integrating with tables. Nowadays tables are built
into packages inside computer programs, which can do almost any integral
you ask them to by matching it to a pattern in the table.
As a BU student, you can download a very powerful such program, called
Mathematica, for free (well, your tuitions paid for the licence).I highly
encourage you to do so. Just
click here.
Useful Mathematica commands
To print the first 100 terms of a sequence {f(n)}, type
Table[f(n),{n,100}], then Shift-Enter.
If the sequence is recursively defined by a(1)=1, a(n+1)=f(a(n)),type
a=1;For[n=1,n<100,n++,a=f(a);Print[a]], then hit Shift-Enter.
To calculate sums (finite of not)
use the sum template (the big sigma on the right), and fill in the boxes.