Excerpts from the Calculus II Syllabus

Expectations

Collaboration

My math students from previous semesters will testify to the value of working together to learn the material. I recommend that you use our Piazza forum to interact with your classmates and work together on understanding the course content. However, the written solutions you turn in must be in your own words. Identical wording among multiple submissions will result in each party earning only a fraction of the credit that the work would otherwise merit.

Where to find shared content and other updates:

Our OneNote Class Notebook will serve as a repository for lecture notes, worksheets, handwritten assessments, and any updates to the weekly schedule. This platform has better support for leaving feedback on all kinds of file types, and so can better replicate the in-person experience most of us are used to.

Check regularly our Piazza forum, the Office365 Class Notebook, and your email. If you email your instructor with a question, please allow up to 24 hours for a response. The wiki-style Q&A on Piazza generally gives faster answers, if the question is relevant to everyone taking Calculus 2.

Grading

This section is adopting the practice of Standards-Based Grading, so as to offer you at any point in the semester a more granular picture of where you stand in relation to the learning outcomes. Your learning will be measured using a set of 54 standards (29 core, 25 advanced), and your grade will be updated as you demonstrate mastery on each of them. Regular weekly assessments will be posted to our OneNote classroom. Before close of business every Friday, you are responsible for:

Here are the possible scores on each standard, and their interpretations.

If on any standard your score is lower than 3, that standard will reappear in the following week's assessment. Failing to earn a 3 on the second appearance will push that standard onto your final exam. Your goal should be to master every standard on its first or second appearance. Otherwise, your final exam might contain more questions than are doable in the two-hour window.

Calculus II Course Standards (numbering follows Stewart 4e)

First character: C=core, A=advanced

C 5.5SR Evaluate indefinite and definite integrals via application of the substitution rule only.

C 5.6IBP Evaluate indefinite and definite integrals via a single application of integration by parts only.

A 5.6BPS Evaluate indefinite and definite integrals via multiple applications of integration by parts or integration by parts and the substitution rule.

C 5.7TI Evaluate indefinite and definite integrals involving trigonometric functions by making appropriate use of the Substitution Rule and relevant trigonometric identities.

A 5.7TS Evaluate indefinite and definite integrals by making a trigonometric substitution.

A 5.7PF Evaluate indefinite and definite integrals by a partial fraction decomposition of the integrand.

A 5.8NI Recognize when an elementary function does not have an elementary antiderivative and cannot be evaluated using the techniques of integration we have learned.

C 5.10RI Recognize improper integrals and rewrite them as limits.

A 5.10CI Determine whether an improper integral converges or diverges.

C 5.9CA Compute left endpoint, right endpoint, midpoint rule, trapezoidal rule, and Simpson's rule approximations of definite integrals.

A 5.9AE Compute error bounds and number of intervals needed for error bound with midpoint, trapezoidal, and Simpson's rule approximations.

C 6.1AF Set up integrals representing areas bounded by functions, both with respect to x and with respect to y. (Evaluation of the integral may be done using technology.)

A 6.1AP Set up integrals representing areas bounded by parametric curves. (Evaluation of the integral may be done using technology.)

A 6.2VS Set up integrals representing volumes by the general slicing method. (Evaluation of the integral may be done using technology.)

C 6.2VR Set up integrals representing volumes of solids of revolution by the washer or disk method. (Evaluation of the integral may be done using technology.)

A 6.3CS Set up integrals representing volumes of solids of revolution by the cylindrical shell method. (Evaluation of the integral may be done using technology.)

C 6.4AC Set up integrals representing arc length of functions with respect to x and with respect to y. (Evaluation of the integral may be done using technology.)

A 6.4LP Set up integrals representing arc length of parametric curves. (Evaluation of the integral may be done using technology.)

C H.G Graph a polar function.

C H.A Set up integrals representing areas of polar regions. (Evaluation of the integral may be done using technology)

C 6.5AV Set up integrals representing average value of functions. (Evaluation of the integral may be done using technology.)

A 6.5MVT Apply the Mean Value Theorem of Integrals appropriately.

C 6.6WK Set up integrals representing work. (Evaluation of the integral may be done using technology.)

A 6.6CM Compute the center of mass for regions in the xy-plane.

C 6.8PB Compute the probability of various outcomes given a probability density function.

A 6.8MM Compute the mean and median for a probability density function.

C 8.1SQ Determine whether a sequence converges with justification, and find the limit of the sequence if possible.

A 8.1RS Compute the limit of a recursive sequence.

C 8.2TD Apply the Test for Divergence appropriately.

C 8.2GS Analyze geometric series for convergence or divergence.

A 8.2GA Applications of geometric series.

C 8.8TP Generate Taylor polynomials from the definition.

A 8.8ER Compute error bounds for Taylor polynomial approximations of functions.

A 8.7TS Generate Taylor series for functions from the definition.

C 8.7MS Memorize the Maclaurin series for important functions.

C 8.4RT Apply the Ratio Test appropriately.

C 8.5RI Determine the radius and interval of convergence of power series.

C 8.3IT Apply the Integral Test appropriately.

A 8.3RE Use the Remainder Estimate for the Integral Test for error bounding in approximating series by partial sums.

C 8.3CT Apply the Comparison and Limit Comparison Tests appropriately.

C 8.4AST Apply the Alternating Series Test appropriately.

A 8.4ASE Use the Alternating Series Estimation Theorem for error bounding in approximating series by partial sums.

C 8.6PS Generate power series for new functions from power series of known functions.

C 7.1DE Testing possible solutions to differential equations.

C 7.2DF Relate differential equations to direction fields, and sketch solutions curves in direction fields.

C 7.2EM Apply Euler's Method to find approximate solutions of Initial Value Problems.

C 7.3SE Solve separable differential equations.

A 7.3OT Find the orthogonal trajectories of families of curves.

A 7.3MP Solve a mixing problem.

C 7.4EX Generate exponential growth and decay models and analyze their solution curves.

A 7.4CH Solve a Newton's law of cooling or heating problem.

A 7.5LG Generate logistic growth models and analyze their solution curves.

Grade computation

By keeping track of your performance on each standard in

CSV (comma-separated values) format,

you can compute your course grade by running the following awk script with the CSV file as its argument.

#!/usr/bin/awk -f
BEGIN {
	FS=","
	CoreFail=0
	CorePass=0
	AdvFail=0
}

{
	best=0
	if ($2 == "C") {
		for (i=3; i<=NF; i++) {
			best = (best > $i ? best : $i)
		}
		CoreSum += best
		if (best < 3) {
			CoreFail += 1
			unmasteredC[CoreFail] = $1
		}
		else {
			CorePass += 1
		}
	} else if ($2 == "A") {
		for (i=3; i<=NF; i++) {
			best = (best > $i ? best : $i)
		}
		AdvSum += best
		if (best < 3) {
			AdvFail += 1
			unmasteredA[AdvFail] = $1
		}
	}
}

END {
	AdvMean = AdvSum/23
	printf("Number of Core Standards Mastered: %2i\n",CorePass);
	printf("Average on Advanced Standards: %1.3f\n",AdvMean);
	if (CorePass >= 29) {
		if (AdvMean < 2) {
			mygrade="C"
		} else if (AdvMean < 3) {
			mygrade="B"
		} else {
			mygrade="A"
		}
	} else {
		if (CoreSum/29 < 2) {
			mygrade="F"
		} else {
			mygrade="D"
		}
	}
	
	print "Core standards still unmastered: "
	for (x in unmasteredC) {
		printf("%6s\t",unmasteredC[x]);
	}
	
	print "\nAdvanced standards still unmastered: "
	for (x in unmasteredA) {
		printf("%6s\t",unmasteredA[x]);
	}
	
	printf("\nOverall course grade: %1s\n",mygrade);
}

Back to course page