Plot in MATLAB
>> f = 3.2*x^5 + 5*x^3 - 3.5*xf =(16*x^5)/5 + 5*x^3 - (7*x)/2
a) See the attached graph
There seems to be a local minima between 0.4 and 0.5
b)
Roots of f
x = 0, x = -0.7240, x = 0.7240, x = 0.0000 - 1.4445i and x = 0.0000 + 1.4445i. Two of them are imagianry roots.
Asymptotes-
>> limit(f, -inf)ans =-Inf>> limit(f, inf)ans =Inf
There are no horizontal asymptotes.
Maxima and minima-
Find the derivative and find roots of it.
>> f1=diff(f)f1 =16*x^4 + 15*x^2 - 7/2
There are two real roots for this equation, at 0.4398 and -0.4398. 0.4398 is the local minima we saw in the graph.
We want to know the inflections points now.
Let's find the derivative of f1 and find roots of it.
>> f2= diff(f1)f2 =64*x^3 + 30*x
There is a real root at 0. This is the inflection point we are looking for.
The results show that there are two other critical points beyond the range of [0,1], a minima at -0.4398 and an inflection point at 0.
Thursday, November 6, 2014
Calculus of a Single Variable, Chapter 3, 3.1, Section 3.1, Problem 45
Subscribe to:
Post Comments (Atom)
Why is the fact that the Americans are helping the Russians important?
In the late author Tom Clancy’s first novel, The Hunt for Red October, the assistance rendered to the Russians by the United States is impor...
-
Friar Lawrence plays a significant role in Romeo and Juliet's fate and is responsible not only for secretly marrying the two lovers but ...
-
Resourceful: Phileas Fogg doesn't let unexpected obstacles deter him. For example, when the railroad tracks all of a sudden end in India...
-
In the late author Tom Clancy’s first novel, The Hunt for Red October, the assistance rendered to the Russians by the United States is impor...
-
Pablo Neruda's "Ode to My Socks" is full of figurative language, including similes and metaphors. Similes are figurative compa...
-
At the beginning of the Victorian period, science was generally in accord with religion, and the study of nature was conducted in such a way...
-
Evaluate $\displaystyle \int x^2 \cos mx dx$ by using Integration by parts. If we let $u = x^2$ and $dv = \cos mx dx$, then $d...
-
Touching Spirit Bear by Ben Mikaelsen is a coming-of-age story about a young man named Cole who undergoes a healing treatment on a deserted ...
No comments:
Post a Comment