"Source: Text/Algebra/AlgFP.text";
"Line: 1478";
"Date: Thu Sep 25 14:47:46 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Algebra/AlgFP.text, line: 1478
// Example: H91E6 ()
print "Example: H91E6";
ei := GetEchoInput();
SetEchoInput(true);
K := RationalField();
A<x,y> := FPAlgebra<K, x, y | x^2*y - y*x, x*y^3 - y*x>;
A;
x;    
x*y;
x^2*y;
A;
K := RationalField();
F<x,y> := FreeAlgebra(K, 2);
A<x,y> := quo<F | x^2*y - y*x, x*y^3 - y*x>;
SetEchoInput(ei);
