"Source: Text/Commut/RngDiff.text";
"Line: 2018";
"Date: Wed Sep 19 23:00:01 2018";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Commut/RngDiff.text, line: 2018
// Example: H118E37 ()
print "Example: H118E37";
ei := GetEchoInput();
SetEchoInput(true);
S<t> := DifferentialLaurentSeriesRing(Rationals());
V<W> := DifferentialOperatorRing(S);
IsDifferentialOperatorRing(V);
assert $1;
Derivation(V)(t);
HasProjectiveDerivation(V);
assert $1;
HasZeroDerivation(V);
assert not $1;
P<Q>, mp := ChangeDerivation(V,3/t);
IsDifferentialOperatorRing(P);
assert $1;
HasProjectiveDerivation(P);
assert not $1;
X<y> := BaseRing(P);
Q*y;
SetEchoInput(ei);
