MATH243_problem_set_template
MATH243_problem_set_template
In Math 243 we’ll be using the mathematical typesetting software LATEX. Clicking
the link for that week’s assignment opens the assignment in Overleaf.
When using LATEX, instead of worrying about how your writing looks on the page
(the “presentation”) you focus on meaning (the “semantics”).
Typographical effects are achieved through semantic macros such as \emph. A
macro (or command ) is a case-sensitive string starting with a backslash, and accepting
zero or more arguments, each enclosed in curly braces. A macro is semantic if it
specifies what a piece of text means (e.g., is emphasized), not how the text appears
(e.g., is italicized).
Most mathematics is typeset with special macros, as we’ll see. Mathematics must
occur in math mode, i.e., must be surrounded by dollar signs for in-line math, or by
\[ \] pairs for displayed math.
1. This item is automatically numbered. What does that tell you about \item?
Answer It tells me that \item will automatically number the item in numer-
ical order.
2. The double angle formula for the cosine function reads cos(2θ) = cos2 θ − sin2 θ.
(a) Typeset the double angle formula for sine. (Look up this identity if you’ve
forgotten it.)
Answer sin(2θ) = 2sin(θ) cos(θ)
(b) Note that \theta gives the Greek letter θ. Typeset at least six other letters
from the lowercase Greek alphabet. (Be sure your macros are in math mode!)
Answer ϕδγψβα
(c) Do you have a guess about how to get capital Greek letters? (Hint: \Alpha
would be logical; as it happens, however, a capital alpha is a Roman capital A,
so there is no separate macro.) Typeset at least four uppercase Greek letters
that have no Roman equivalent.
Answer Γ∆ΣΦ
(a) Modify parts of this code and see what happens. Hints: \, gives a thin
space, \quad gives one em of space, the width of the letter m in the current font,
\qquad gives two ems. The underscore and caret each accept one argument,
and make a subscript or superscript. The \text command sets its argument in
“paragraph mode”. Why is it needed here?
Answer Without \text, the words ”for all x with...” all become once word
and the computer reads it as part of the math equation instead of as English.
It also allows for the break in the text. (b) Evaluate the following derivatives
and typeset the answers:
Z x Z u Z √
d sin t d t2 d t tan s
e dt; log(1 + e ) dt; ds.
dx 0 du π dt −1 1 + s2
Answer √
tant
u2
esin x log(1 + e )
1 + t2
(c) Typeset the other fundamental theorem of calculus, sometimes known as
the evaluation theorem. Don’t forget to state appropriate hypotheses.
Answer If f is continuous at every point of [a,b], and if F is any anti derivative
of f on [a,b], then
Z b
f (x) dx = F (b) − F (a)
a
1
The tilde character is a tie or non-breaking space. Using ties is a little fussy, but helps distinguish
professional typography. Use a tie where a line break would interrupt the reader’s attention.