"Source: Text/Algebra/AlgFP.text";
"Line: 1478";
"Date: Thu Apr  1 12:39:47 2021";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Algebra/AlgFP.text, line: 1478
// Example: H89E6 ()
print "Example: H89E6";
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);
