Nilsson Ring
#1070
Replies: 1 comment
-
Once this is done, see Theorem 2.3.11 in SST for a description of the log part of an indicial solution |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As a part of the D-modules coding sprint, we want to compute solutions that live in the Nilsson ring:
(Page 95 of Grobner Deformations of Hypergeometric Differential Equations, Saito Sturmfels, Takayama)
Here e^i are rational exponent vectors, not powers of e. Essentially, we want sums of polynomials in x,y,z,... (with rational exponents) and logarithms log(x),log(y),log(z),...
Currently, we're thinking of two new types:
NilssonTerm
andNilssonSeries
:Here MonomialExponents is the exponent vector of the x^(1/2)y^0 and PolynomialInLog represents log(x)log(y).
Question 1: is there a smart way to present this? (ie. net NilssonTerm)
The main problems are logs and rational exponents.
We also need to add and multiply these terms to get truncated series:
Question 2: is there a way to define a monoid with objects of a given type, in this case NilssonTerms?
Beta Was this translation helpful? Give feedback.
All reactions