Processing math: 61%
Ask Your Question
1

How to solve a formal PDE

asked 2 years ago

Marco Castronovo gravatar image

Introduction

A multivariate formal series fQ[[x1,,xn]] can be written as f(x1,,xn)=i1,,in0c(i1,,in)xi11xinn. When 1kn denote fk the partial derivative of f with respect to the variable xk, and when 1k1,ktn denote fk1kt the order t partial derivative with respect to the variables xk1,,xkt. Since two formal power series are equal if all the coefficients of their monomials are equal, a partial differential equation for f (formal PDE) is equivalent to a system of polynomial equations for the coefficients c(i1,,in).

Example of mixed exponential type

Consider n=2 variables, and the formal power series f(x1,x2)=d1N(d)edx1x3d12(3d1)!. This is an example of formal series of "mixed exponential type", because its presentation involves exponentials of some of the variables. By expanding the exponential and renaming indices, it can be written as above with c(i1,i2)=(i2+13)i1N(i2+13)/(i1!i2!) if i22(mod 3) and c(i1,i2)=0 otherwise. The PDE f222=f2112f111f122 is equivalent to the polynomial equations for d2 N(d)=\sum_{d_1+d_2=d}N(d_1)N(d_2)\left( d_1^2d_2^2 \binom{3d-4}{3d_1-2} -d_1^3d_2\binom{3d-4}{3d_1-1}\right) and this sequence is uniquely determined by the value of N(1). As discovered by Kontsevich, if N(1)=1 then N(d) is the number of rational curves of degree d through 3d-1 generic points in the complex projective plane.

Question

Can one use SageMath to solve formal PDEs? By solving I mean the following: given the formal PDE and a degree bound b \in \mathbb{N}, compute all numbers c(i_1,\ldots ,i_n)\in\mathbb{Q} with i_1+\ldots +i_n\leq b for the solution (assuming that it exists and is unique). In practice, it would be nice if the proposed method allowed to work with formal series of "mixed exponential type" too. A good test would be to see if in the example above the method computes, given b\in\mathbb{N}, all numbers N(d) with d \leq b as listed in OEIS A013587 (cannot post link due to low karma).

Preview: (hide)

Comments

Do you mean a function like pdsolve/series in Maple?

Max Alekseyev gravatar imageMax Alekseyev ( 2 years ago )

1 Answer

Sort by » oldest newest most voted
3

answered 2 years ago

Max Alekseyev gravatar image

updated 2 years ago

This functionality can be implemented via solving a system of polynomial equations:

L = 6        # number of terms to compute
R = PolynomialRing(QQ,L,'N')
N = R.gens()
K.<x1,x2> = PowerSeriesRing(R,default_prec=3*L)
f = sum(N[d]*((d+1)*x1).exp()*x2^(3*(d+1)-1)/factorial(3*(d+1)-1) for d in range(L))
p = f.polynomial()    # differentiation seems to be broken for power series
x = p.parent().gens()
eq = p.derivative( x[1], 3 ) - p.derivative( x[0], x[0], x[1] )^2 + p.derivative( x[0], x[0], x[0] )*p.derivative( x[0], x[1], x[1] )
eq = K(eq).add_bigoh(3*L-3)
J = R.ideal( list(eq.dict().values())+[N[0]-1] )
print( J.variety() )

Intermediate conversion to polynomial is needed here due to the bug https://trac.sagemath.org/ticket/34846

Preview: (hide)
link

Comments

The last instruction gives the following error, and Sage quits automatically after it:


(no backtrace available)

Unhandled SIGILL: An illegal instruction occurred. This probably occurred because a compiled module has a bug in it and is not properly wrapped with sig_on(), sig_off().

Python will now terminate.

/Applications/SageMath/src/bin/sage-python: line 2: 2551 Illegal instruction: 4 sage -python "$@"

Marco Castronovo gravatar imageMarco Castronovo ( 1 year ago )

What's your Sage version? It may be worth it to update it to the latest one.

Max Alekseyev gravatar imageMax Alekseyev ( 1 year ago )

It works with Sage 10.1. Thanks!

Marco Castronovo gravatar imageMarco Castronovo ( 1 year 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

1 follower

Stats

Asked: 2 years ago

Seen: 532 times

Last updated: Dec 14 '22