"Source: Text/Commut/RngDiff.text";
"Line: 1228";
"Date: Wed Sep 19 23:00:01 2018";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Commut/RngDiff.text, line: 1228
// Example: H118E23 ()
print "Example: H118E23";
ei := GetEchoInput();
SetEchoInput(true);
F<z> := RationalDifferentialField(Rationals());
P<Y> := PolynomialRing(F);
K<y> := ext<F|Y^2-z^3+z+1>;
Genus(UnderlyingRing(K));
assert $1 eq 1;
pl:=Zeros(K!z)[1];
Degree(pl);
assert $1 eq 2;
S<t>, mp := Completion(K,pl);
IsDifferentialLaurentSeriesRing(S);
assert $1;
C<c> := ConstantRing(S);
C;
mp(y) + O(t^4);
SetEchoInput(ei);
