University of Florida/Egm4313/s12.team5.R2

From Wikiversity
Jump to navigation Jump to search

Report 2

R2.1[edit | edit source]

Question[edit | edit source]

Given the two roots and the initial conditions:

(1.0)

(1.1)

Part 1.

Find the non-homogeneous L2-ODE-CC in standard form. Find the solution in terms of the initial conditions and the general excitation
Now with no excitation and plot the solution:

(1.2)


Part 2.

Generate 3 non-standard (and non-homogeneous) L2-ODE-CC that admit the two values as the two roots of the corresponding characteristic equation.

Solution[edit | edit source]

Part 1.

Characteristic Equation:

(1.3)

(1.4)

(1.5)

Non-Homogeneous L2-ODE-CC:

(1.6)

Homogenous Solution:

(1.7)

Overall Solution:

(1.8)

(1.9)

Satisfy Initial Conditions:

(1.10)

(1.11)

No excitation:

(1.12)

From (1.10):

(1.13)

From (1.11):

(1.14)

(1.15)

(1.16)

Plug (1.13) into (1.16):

(1.17)

Solve for :

(1.18)

Plug (1.18) into (1.13) and solve for :

(1.19)

Therefore, the final solution in terms of the initial conditions and the general excitation is:

(1.20)


Plot of Solution:

Figure 1

Part 2.

Three non-standard and non-homogeneous solutions using the same roots given above:

1.

(1.21)

(1.22)

2.

(1.23)

(1.24)

3.

(1.25)

(1.26)

Author[edit | edit source]

This problem was solved and uploaded by [Derik Bell]

This problem was proofread by: David Herrick

R2.2[edit | edit source]

Question[edit | edit source]

From Section 5 in the notes, pg. 5-6

Solve the L2-ODE-CC from pg. 5-5, equation (4)

For initial conditions:

Where there is no excitation, i.e.

Solution[edit | edit source]

Factoring:

Thus, there is a double root, where

Because there is no excitation, the homogenous solution will be the same as the final solution. Thus, the solution will be:

Plugging in the initial condition,

In order to solve for the second constant, we need to take a derivative.

Plugging in C1 and the other initial condition:

So, the final solution is:


Matlab Code:

x = 0:0.001:1;

f = exp(5*x) - 5*x.*exp(5*x);

plot(x,f)

xlabel ('x')

ylabel ('y(x)')

Author[edit | edit source]

This problem was solved and uploaded by [David Herrick]
This problem was checked by [William Knapper]

R2.3[edit | edit source]

Question[edit | edit source]

Complete problems 3 and 4 from p.59 of K 2011.

Solution[edit | edit source]

The two problems have the same instructions: "Find a general solution. Check your answer by substitution."

Problem 3[edit | edit source]


We start by using the characteristic equation of this ODE in order to find the roots. We use:


where a = 6 and b = 8.96. Taking the discriminant, we find that


A positive discriminant implies that there exists two real roots, with a general solution of the form:


To find the unknowns, we find the roots of the above equation:



Therefore, the correct general solution is:

 

To check that this solution is correct, we take the first and second derivatives:



Now, we plug these values into the original equation:


Upon further inspection, all the terms on the left side of the equation cancel out and equal zero.

Problem 4[edit | edit source]


We start by using the characteristic equation of this ODE in order to find the roots. We use:


where a = 4 and b = (π^2 + 4). Taking the discriminant, we find that


A negative discriminant implies that there exists complex conjugate roots to this equation. The general solution for this type of equation is


Where


This yields

 

To verify that this is the correct solution, we first find the first and second derivatives of the solution:




We then plug these values into the original problem to get this somewhat lengthy equation:




Upon further inspection, all the terms on the left side of the equation cancel out to 0.

Author[edit | edit source]

This problem was solved and uploaded by: (Will Knapper)

This problem was proofread by: David Herrick

R2.4[edit | edit source]

Question[edit | edit source]

K 2011 p.59 pbs.5,6. Find a general solution. Check your answer by substitution.

Problem 5[edit | edit source]

Solution[edit | edit source]

Determine the characteristic equation and the nature of the determinate:

Characteristic Equation:

0 indicates a real double root, therefore:

from the original equation. Therefore:


Substituting into the original equation gives:

Canceling gives 0 = 0, confirming the general solution found above.

Author[edit | edit source]

This problem was solved and uploaded by: (John North)

This problem was proofread by: David Herrick

Question 2[edit | edit source]

Problem 5[edit | edit source]

Solution[edit | edit source]

Reduce original equation so that the first coefficient is 1:

Determine the characteristic equation and the nature of the determinate:

Characteristic Equation:

0 indicates a real double root, therefore:

from the original equation. Therefore:


Substituting into the original equation gives:

Canceling gives 0 = 0, confirming that general solution found above.

Author[edit | edit source]

This problem was solved and uploaded by: (John North)

This problem was proofread by: David Herrick

R2.5[edit | edit source]

Question[edit | edit source]

Problems 16 and 17 from pg. 59 of the textbook. The two questions have the same instructions: Find an ODE of the form

for the given basis.

Solution[edit | edit source]

Problem 16[edit | edit source]


This basis implies that there are two distinct, real roots: 2.6 and -4.3. We put these roots into the characteristic equation to get:
Then, you convert the characteristic equation to a regular ODE:

 

Problem 17[edit | edit source]


A basis of this form implies that the solution is of the form:

The real double root can be found by this equation:

That means that the characteristic equation can be found by solving:

Converting the characteristic equation to the ODE, we get:

 

Author[edit | edit source]

This problem was solved and uploaded by: (Will Knapper)
This problem was proofread by (Josh House)

R2.6[edit | edit source]

Question[edit | edit source]

Realize spring-dashpot-mass system in series as shown in Fig. p.1-4 with the similar characteristic as in (3)p.5-5, but with the double real root , i.e., find values for parameters k,c,m.

Solution[edit | edit source]

First we put the double root into the characteristic equation:



The corresponding L2-ODE is:


The equation of motion of the spring-dashpot-mass system is:
[1]
or:


Solving for the parameters k,c,m:






We get:

 





Author[edit | edit source]

This problem was solved and uploaded by: (Radina Dikova)

This problem was proofread by: Mike Wallace

R2.7[edit | edit source]

Question[edit | edit source]

Develop the McLauren series (Taylor series at t=0) for e^t, cos(t), and sin(t).

Solution[edit | edit source]

The general form of the Taylor series expansion at point a is

for at t=0:




for at t=0:




for at t=0:





Author[edit | edit source]

This problem was solved and uploaded by: (John North)
This problem was checked by: William Knapper

R2.8[edit | edit source]

Question[edit | edit source]

Find a general solution. Check your answer by substitution.

8.


15.

Solution[edit | edit source]

8.

Writing the characteristic equation:


Which is now in the form:


Solving for the two roots:


We will find the discriminant to be less than 0, leading to complex conjugate roots:


Which leads to a solution of the form:


Where , therefore:


Giving us a solution of:



Checking our solution:


Plugging all of this into the original differential equation and combining like terms gives us:


The terms in the brackets all add up to zero, thus verifying we have a correct solution to our problem.



15.


Writing the characteristic equation:


Which is now in the form:


Solving for the two roots:


We will find the discriminant to be less than 0, leading to complex conjugate roots:


Which leads to a solution of the form:


Where , therefore:


Giving us a solution of:



Checking our solution:


Plugging all of this into the original differential equation and combining like terms gives us:


The terms in the brackets all add up to zero, thus verifying we have a correct solution to our problem.

Author[edit | edit source]

This problem was solved and uploaded by: (Josh House)
This problem was proofread by: (Radina Dikova)

R2.9[edit | edit source]

Question[edit | edit source]

For the given ODE, find and plot the solution for the L2-ODE-CC corresponding to

In another figure superpose this figure, Fig. from R2.6 p.5-6, and the Fig. from R2-1 p.3-7.

This corresponds to the L2-ODE-CC in standard form

Given[edit | edit source]

Initial conditions

Where there is no excitation

Solution[edit | edit source]

Solving the quadratic equation for determines the roots of the ODE



The roots of the quadratic equation come out to be:


The general homogeneous solution of the ODE will resemble the following form.

Plugging in the roots into the equation we get


Implementing initial conditions where:


So from our initial conditions the constants are determined to be


The final solution becomes


Figure 1 for R2.9 Superposed Figs. for R2.9

Author[edit | edit source]

This problem was solved and uploaded by: Mike Wallace
This problem was proofread by John North

Contribution Summary[edit | edit source]

Problem 2 was solved and Problems 1, 3, and 4 were proofread by David Herrick 15:56, 6 February 2012 (UTC)

Problem 8 was solved and Problem 5 was proofread by Josh House 23:41, 7 February 2012 (UTC)

Problem 6 was solved and Problem 8 was proofread by Radina Dikova 16:26, 7 February 2012 (UTC)

Problem 9 was solved and Problem 6 was proofread by Mike Wallace 23:35, 7 February 2012 (UTC)

Problems 3 and 5 were solved and Problems 2 and 7 were proofread by William Knapper 05:04, 8 February 2012 (UTC)

Problem 1 was solved by Derik Bell 15:44, 8 February 2012 (UTC)

Problems 4 and 7 were solved and Problem 9 was proofread by John North 15:47, 8 February 2012 (UTC)

References[edit | edit source]

  1. Vu-Quoc , Loc. 2012. IEA S12 Lecture notes, audios, videos. Section 1(d) https://docs.google.com/Doc?id=dc82nfgb_858gmw855hj