Re: equation
- From: Robert Dodier <robert.dodier@xxxxxxxxx>
- Date: Tue, 4 Mar 2008 09:50:07 -0800 (PST)
On Mar 3, 1:06 pm, "adriano meis" <doreciakg...@xxxxxxxxxxx> wrote:
I have the free maxima 5.12
can I solve a linear finite difference equation,
in a symbolic way, with Maxima?
For example, if I give to Maxima the input:
x(n+1)+x(n)=0
then Maxima have to give me the output:
x(n)=c*(-1)^n. (where c depends on initial condition).
The package solve_rec can solve some difference equations.
load (solve_rec);
solve_rec (x[n] + x[n + 1]=0, x[n]);
=> x[n] = %k[1]*(-1)^n
I think solve_rec is in Maxima 5.12. If not just
get a later version.
There might be another package for difference equations,
I don't remember for sure.
HTH
Robert Dodier
.
- References:
- equation
- From: adriano meis
- equation
- Prev by Date: Re: -- Wolfram Research QA process defect
- Next by Date: Is Mathematica 6.0.2 available for Solaris?
- Previous by thread: Re: equation
- Next by thread: Re: -- Wolfram Research QA process defect: Bug in Mathematica 6 - Integrate - 93 (Sqrt, Sin, Cos, No more memory available. Mathematica kernel has shut down., NEW regression bug)
- Index(es):
Relevant Pages
|