Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Math Expert


Home >> Math

Problem 1. Find and classify the fixed points of x? = x3 - 6x2 - 13x + 42 as stable or unstable using the following 3 methods:

  • a one-dimensional analysis. (Hint: Maple has a factor command which will help to find fixed points.);

  • a two-dimensional Maple analysis. That is, plot the solutions on the plane with different initial values as on the one dimensional flow examples Maple worksheet;

  • a linear stability analysis (i.e. find f(x0) and explain);

  • a Liapunov function as on the one dimensional flow examples Maple worksheet.

Problem 2. A particle travels on the half-line x ≥ 0 according to x? = -xc, where c is a real number.

  • Find all the c such that x = 0 is a stable fixed point.

  • Given a c for which x = 0 is stable, is it possible that the flow reaches x = 0 in a finite amount of time? Specifically, calculate how long it takes for a particle at x = 1 to get to x = 0. (Hint: (1) you have to consider di?erent cases for c; (2) separate variables and integrate to get T = 01 -? - dx.)

  • For the two different cases of c which you determine above, choose representative values for c (e.g. c = 1/2, c = 2), solve the differential equation numerically as in class and plot the different solutions. Explain why these plots verify your conclusions above about how long it takes a particle to reach x = 0.

Problem 3. (Non-Uniform Oscillators)

  • For the vector field on the circle θ? = µ sin(θ) - sin(2θ), find the fixed points and draw the flow on the circle assuming µ ≥ 0. Do the cases µ 2, µ = 2, 0 < µ < 2 and µ = 0 separately. (Hint: expand sin(2θ).)

  • Show that θ? = µ + sin(θ), where µ is slightly less than 1, is an excitable system. That is, it satisfies two properties: it has a unique globally attracting rest state; and a large enough stimulus can send the system on a long excursion until it returns to the rest state. What is the rest state? And what threshold do you have to overcome with a stimulus to send the system on the excursion? Hint: draw the flow on the circle.

  • For the excitable system θ?= 0.95 + sin(θ), modify the procedure nonunifosciani from the non-uniform oscillator worksheet to see what happens when θ(0) = -π/2. For this situation, how much of a initial impulse would you have to give to the system (i.e. the angle θ) to make it enter the long excursion  state?

Problem 6. The Picard-Lindel of Theorem says that the initial value problem

dx/dt = f (t, x(t)),          x(0) = a

has a unique solution. The proof is via the Banach Fixed Point Theorem applied to the operator T (taking continuous functions to other continuous functions) defined by

T (x)(t) = a + t_0t f (s, x(s)) ds.

The method of the proof actually allows an iterative scheme for solving initial value problems to be invented.  Here it is.

The following Maple commands implement the Picard iteration scheme for solving an initial value problem

dx/dt = f (t, x(t)),          x(0) = a.

The method is given by the following: start with any function x0(t) and x(0) = a and let

?1(t) = a + t_0t f (s, x0(s)) ds.

Continue by defining

?n(t) = a + t_0t f (s, ?n-1(s)) ds.

Picard's Theorem says that the ?n converge to the solution xof the differential equation (with initial condition). So if you take ?n for n big enough, you should have a good approximation to the true solution.

Fill in the blanks (denoted by a dash -) in the procedure and commands below and carry out the rest of the commands to solve the indicated initial value problems.

>     with(LinearAlgebra):with(plots):with(DEtools):

>     picard:=proc(g,x_start,x0,t0,N)
local i,x;x:=x_start;
for  i  from  1  to  -  do
x:=x0+int(g(t,-),t=t0..t);
od:
x;
end:

Solve dx/dt = t with x(0) = 1.

>     f:=(s,y)->s;

>     picard(f,1,1,0,2);

Solve dx/ dt = x with x(0) = 1.

>     f2:=(s,y)->y;

>     picard(-,1,-,0,10);

Use dsolve to find the true solution of this initial value problem. Does your solution make sense in this light? Explain. (Hint: apply the command "taylor" to dsolve's solution to compare.  Look up the help on "taylor" by typing ?taylor.)

Take a di?erent starting function, xstart = sin(t), and do Picard iteration for the same initial value problem.

>     picard(f2,-,1,0,11);

Show that the answers are the same by taking a Taylor series of cos(t) and then subtract- ing cos(t) and adding the Taylor series as follows. Explain what you are  doing.

>     taylor(cos(t),t=0,11);

>     sort(simplify(picard(f2,sin(t),1,0,11)-cos(t)+ convert(taylor(cos(t),t=0,11),polynom)),  t,ascending);

Now use the Picard iteration method on the following two initial value problems. Check your answers with dsolve.

dx/dt = x(1 - x),           x(0) = 2;

dx/dt = t -x2,              x(0) = 0.

For these problems, take N larger and larger (up to 10 say) and show that you get better and better approximations to the true solution (from dsolve). But be careful. The Picard iteration could give you a gigantic answer. You can truncate the answer that picard gives you by using something like

taylor(sort(picard(f,0,0,0,9),t,ascending),t=0,30);

Here we take the Taylor series of the picard answer polynomial up to t29. (You may wind  up with strange functions for answers - such as Airy functions - but they still have Taylor polynomials that Maple will find. So compare your answers by using these.)

Math, Academics

  • Category:- Math
  • Reference No.:- M91730142

Have any Question?


Related Questions in Math

Mathematics- algebraic geometry problemlet k denotes an

Mathematics- Algebraic Geometry Problem Let K denotes an algebraically closed field and let P 1 be constructed as in Example 5.5(a) in Gathmanns notes, i.e. P 1 is the gluing of X 1 = A 1 and X 2 = A 1 along  the open su ...

Question 1 what is the nth order approximation using taylor

Question: 1. What is the nth order approximation using Taylor series? 2. What is Error Propagation? 3. Please explain what the total numerical error is? Please illustrate how the change of step size will affect the total ...

Clarity succinctness writing your name and netid1

Clarity, succinctness, writing your name and Netid: 1 Indistinguishability 1. If {X n }n is computationally indistinguishable from {Y n } n , {Y n } n is computationally indistin- guishable from {Z n } n, then (select th ...

Questions - provide solution to the following questionsq1

Questions - Provide solution to the following questions: Q1. Evaluate the following: ∫xsin3xdx Q2. If , then for what value of α is A an identity matrix? Q3. The line y = mx + 1 is a tangent to the curve y 2 = 4x. Find t ...

Instructionsthe aim of the assignment is that the

Instructions The aim of the assignment is that the student/group studies and applies numerical methods such as Euler's method, the Improved Euler's method and the Runge-Kutta method to solve first-order differential equa ...

Assessment taskpractical investigation- question 1 requires

Assessment Task Practical Investigation - Question 1 requires selecting reference points from the graph. It is expected that each student will choose different reference points to other students. Take note of the criteri ...

Question you will recommend a course of action regarding

Question: You will recommend a course of action regarding strategic planning in light of the issue the healthcare organization is facing. Be sure to address the following: 1. Provide a brief summary of the issue facing t ...

Questions -q1 prove the following identitiesa sinx y sinx

Questions - Q1. Prove the following identities a. sin(x + y) + sin(x - y) = 2 sin x cos y b. sec(x - y) = cos(x + y)/(cos 2 x - sin 2 y) c. tan 2 x - sin 2 x = (tan x sin x) 2 Q2. Solve the following equations for x ∈ [0 ...

Assignment - solving the five question in the very details

Assignment - Solving the five question in the very details, thanks a lot. Question - Let a ∈ P n be a point. Show that the one-point set {a} is a projective variety, and compute explicit generators for the ideal I p ({a} ...

1 suppose that n 10088821 is a product of two distinct

1. Suppose that n = 10088821 is a product of two distinct primes, and Φ(n) = 10082272. Determine the prime factors of n. 2. It is easy to show that the converse of Fermat's Theorem does not hold; i.e., the congruence a n ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As