- Information
- AI Chat
Was this document helpful?
Math 11-Worksheet 10 Sol
Course: Calculus I (MATH 011)
81 Documents
Students shared 81 documents in this course
University: University of California, Merced
Was this document helpful?
Math 11 Worksheet 10 for Sections 4.5, 4.6, and 4.8 (Solutions) Spring 2023
1 Section 4.5
1. For the given functions, where is it concave up/down? Give your answers in interval notation. You
may use the work done from Worksheet 9!
(a) f(x) = x3+ 3x2−1
❼
f′′ (x) = 6x+ 6 and setting f′′ (x) = 0, we get x=−1. f(x) is concave up on [−1,∞) and
concave down on (−∞,−1].
(b) g(x) = √3x−2 sin x, on (0,2π)
❼
g′′ (x) = 2 sin xand setting g′′ (x) = 0, we get x=π(x= 0 is not in the interval). g(x) is
concave up on (0, π] and concave down on [π, 2π).
(c) h(x) = x2+ 3
x+ 1
❼
h′′ (x) = 8
(x+ 1)3and setting h′′ (x) = 0, we find that there are no solutions, but still a critical
value at x=−1. h(x) is concave up on (−1,∞) and concave down on (−∞,−1).
2. Gaussians: (part 2) In Math 15, Math 18, and/or Psychology 10; you will encounter a Gaussian
curve—colloquially known as a “bell curve”. The standard, normal distribution is defined by the
function
f(z) = 1
√2πe−0.5z2
Familiarize yourself with the shape1of the function by analyzing the function for properties such as
the following:
(a) Over what intervals is the function concave up? ... concave down? Are there any points of
inflection? You may use the work done from Worksheet 9!
Here,
f′′ (z) = z2−1
√2πe−z2/2.
CU on (−∞,−1]∪[1,∞) and CD on [−1,1]. Points of inflection are (−1,1/√2eπ) and (1,1/√2eπ)
3. Sigmoid Function: (part 2) In a branch of computer science called Machine Learning, scientists
like to employ sigmoid functions to transform data.2Analyze the function
f(z) = 1
1 + e−z
for properties such as the following:
(a) Over what intervals is the function concave up? ... concave down? Are there any points of
inflection? You may use the work done from Worksheet 9!
Here,
f′′ (z) = −e−z(1 −e−z)
(1 + e−z)3.
CU on (−∞,0] and CD on [0,∞). Point of inflection is (0,1/2).
1Further (optional) reading: The reason for the coefficient 1
√2πis to ensure that the area between the curve and the horizontal
axis is equal to one. Considering that the bell curve is used in the study of probabilities, why is it important for that area to
be equal to one?
2Further (optional) reading: The goal of a sigmoid function is to map all possible inputs to a relatively small range of
numbers. Furthermore, a sigmoid function is one-to-one (i.e. invertible, or “passes a horizontal line test”). These properties
allow computers to handle numerical data more easily. Another popular, sigmoid function is g(z) = tan−1z
1