Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question
0

Infinite initial conditions in ODE and arbitrary constant

asked 8 years ago

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

Is it possible to include infinite initial conditions in an ODE? For example,

ode_soln = desolve(ode, q, ics[0, -Infity])

throws and error.

Alternatively, I can leave the initial condition blank:

ode_soln = desolve(ode, q)
soln = solve(ode_soln, q)
show(soln[0])

Then output Includes an arbitrary constant written C q(t)=pC(p+1)+(p+1)t

I tried to set a value for C via,

show(soln[0].substitute(C = 0))

but it made no difference. Here p I declared as a variable, and I can do things like

show(soln[0].substitute(p = 1))

to produce the expected output

q(t)=12(C+t)

So it seems that I need to refer to the arbitrary constant by some other name than C. How can I do this?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 8 years ago

eric_g gravatar image

The answer to your second question (substituting for C) is

soln[0].substitute({SR.var('_C'): 0})

This is because constants that appear in solutions of ODEs, like _C (which is displayed as C), are not put in the global namespace, hence they have to be recovered from their names in the Symbolic Ring (SR) by SR.var('_C').

Preview: (hide)
link

Comments

Excellent. That does the job, thank you.

Paul Bryan gravatar imagePaul Bryan ( 7 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 8 years ago

Seen: 387 times

Last updated: Feb 09 '17