Math 229, Calculus Computer Lab, Fall 2018

FINAL: Mon 17 Dec 10:10-12:05 1S-108

M 10:10-12:05 1S-108

Section: 16315

Instructor: Joseph Maher
Office: 1S-222
Office hours: M 12:20-2:15, W 1:25-2:15
Webpage: http://www.math.csi.cuny.edu/~maher/teaching
Email: joseph.maher@csi.cuny.edu
Phone: (718) 982-3623

Important Dates (http://www.csi.cuny.edu/currentstudents/academiccalendars/)

Useful links:

Julia: To use Julia from your browser, click here: https://juliabox.org/ and log in with your google account, or github or linkedin accounts.

Projects: There are 10 projects due.

The actual work that must be submitted is from an ipython notebook file run in Julia. Once you have opened the project notebook you can run the notebook with Cells-Run All. Feel free to open a spare Julia notebook for rough work while working on the project, but remember to type "using MTH229" on the first line. When you are finished with the notebook close it with File->Close and Halt.

To submit your project, use the CSI MATLAB project grading site at http://www.math.csi.cuny.edu/MATLAB/Login. Keep both the ipython notebook open and the MATLAB grading project tab open so that you can copy and paste your answers.


We've updated the main set of projects - everything should be working now as long as you use kernel 1.0.0.


For Project 5:

Switch to kernel 1.0.0

If you have an old version of the project, this is the correct lim function:

function lim(f::Function, c::Real; n::Int=6, dir="+")
hs = [(1/10)^i for i in 1:n] # close to 0
if dir == "+"
   xs = c .+ hs
else
   xs = c .- hs
end
ys = map(f, xs)
[xs ys]
end

Project deadlines:

Calculator Sep 7
Functions Sep 21
Graphing Sep 28
Zeros Oct 5
Limits Oct 19
Derivatives Oct 26
First and second derivatives Nov 9
Newton's Method Nov 23
Extrema Nov 30
Integration Dec 7

Quiz solutions

Final a solutions

Final b solutions


Exams: There will a final exam at the end of the semester. You must take the final exam at the time scheduled by the university. You may not use a phone during exams.

  • Final: TBA

Grading: The course grade will be determined as follows: Projects 40%, in class quizzes 40% and Final 20%. You must pass the exams and quizzes to pass this course.

Help: Email is the best way to contact me. Come and see me during my office hours! Free math tutoring is also available (http://www.math.csi.cuny.edu/Students/Tutoring).

Attendance: Attendance is mandatory.

Disability policy: Qualified students with disabilities will be provided reasonable academic accommodations if determined eligible by the Office for Disability Services. Prior to granting disability accommodations in this course, the instructor must receive written verification of student's eligibility from the Office of Disability Services, which is located in 1P-101. It is the student's responsibility to initiate contact with the Office for Disability Services staff and to follow the established procedures for having the accommodation notice sent to the instructor.

Integrity policy: CUNY's Academic Integrity Policy is available online at https://www.csi.cuny.edu/catalog/undergraduate/academic-policies.htm#o3518


Useful links:

Online graphing tool

Calculus.org

Calculus online tutorial

List of calculus formulas and theorems

Khan Academy

Patrick JMT