Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Like this

sage: F = algebras.Free(QQ, ['a','b'], degrees=(1,1))
sage: F.completion()
Lazy completion of Free Algebra on 2 generators (a, b) with degrees (1, 1) over Rational Field

Like this

sage: F = algebras.Free(QQ, ['a','b'], degrees=(1,1))
sage: F.completion()
FF = F.completion(); FF
Lazy completion of Free Algebra on 2 generators (a, b) with degrees (1, 1) over Rational Field
sage: a,b = F.gens()
sage: a = FF(a) ; b = FF(b)