|
|
last edited 16 years ago by japp |
1 2 3 4 5 | ||
Editor:
Time: 2007/11/17 22:23:33 GMT-8 |
||
Note: |
changed: - \begin{axiom} a := operator 'a seriesSolve((2*x-2)*D(a(x),x)+4*a(x),a,x=0,[1]) \end{axiom} does not work. A workaround within the interpreter is to provide a function like:: fixedPointExquo(s, p) == fixedPointExquo(s, p::UTS(EXPR INT, x, 0))$UTSODE(EXPR INT,UTS(EXPR INT, x, 0)) but that won't work in spad. From WilliamSit Wed Jul 5 00:34:10 -0500 2006 From: William Sit Date: Wed, 05 Jul 2006 00:34:10 -0500 Subject: Message-ID: <20060705003410-0500@wiki.axiom-developer.org> \begin{axiom} a := operator 'a fixedPointExquo(s, p) == fixedPointExquo(s, p::UTS(EXPR INT, x, 0))$UTSODE(EXPR INT,UTS(EXPR INT, x, 0)) p := seriesSolve((2*x-2)*D(a(x),x)+4*a(x),a,x=0,[1]) (2*x-2)*D(p,x)+4*p \end{axiom} Looks like the case of two different x's again. From unknown Wed Jul 5 01:54:30 -0500 2006 From: unknown Date: Wed, 05 Jul 2006 01:54:30 -0500 Subject: Message-ID: <20060705015430-0500@wiki.axiom-developer.org> I have a better fix, but I'm still not happy. And 'seriesSolve' still crashes quite often... I'll send it per mail, Martin
a := operator 'a
![]() | (1) |
seriesSolve((2*x-2)*D(a(x),x)+4*a(x), a, x=0, [1])
Compiling function %B with type List(UnivariateTaylorSeries( Expression(Integer),x, 0)) -> UnivariateTaylorSeries(Expression( Integer), x, 0)
![]() | (2) |
does not work. A workaround within the interpreter is to provide a function like:
fixedPointExquo(s, p) == fixedPointExquo(s, p::UTS(EXPR INT, x, 0))$UTSODE(EXPR INT,UTS(EXPR INT, x, 0))
but that won't work in spad.
a := operator 'a
![]() | (3) |
fixedPointExquo(s,p) == fixedPointExquo(s, p::UTS(EXPR INT, x, 0))$UTSODE(EXPR INT, UTS(EXPR INT, x, 0))
p := seriesSolve((2*x-2)*D(a(x),x)+4*a(x), a, x=0, [1])
Compiling function %D with type List(UnivariateTaylorSeries( Expression(Integer),x, 0)) -> UnivariateTaylorSeries(Expression( Integer), x, 0)
![]() | (4) |
(2*x-2)*D(p,x)+4*p
![]() | (5) |
Looks like the case of two different x's again.
I have a better fix, but I'm still not happy. AndseriesSolve
still crashes quite often...
I'll send it per mail,
Martin