Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

complex conjugate of a variable

I attempted to construct the complex conjugate of a variable thus -
x = var('x') f = x*conjugate(x) f({x:2+2i}) this throws a SyntaxError, although the f({x:2+2i}) case works perfectly.

click to hide/show revision 2
No.2 Revision

complex conjugate of a variable

I attempted to construct the complex conjugate of a variable thus -

x = var('x')
 f = x*conjugate(x)
 f({x:2+2i})

this throws a SyntaxError, although the f({x:2+2i}) case works perfectly.

click to hide/show revision 3
No.3 Revision

complex conjugate of a variable

I attempted to construct the complex conjugate of a variable thus -

x = var('x')
f = x*conjugate(x)
f({x:2+2i})

this throws a SyntaxError, although the f({x:2+2i}) case works perfectly.

click to hide/show revision 4
f(x:2+2i) should be f(x:2)

complex conjugate of a variable

I attempted to construct the complex conjugate of a variable thus -

x = var('x')
f = x*conjugate(x)
f({x:2+2i})

this throws a SyntaxError, although the f({x:2+2i})f({x:2}) case works perfectly.