complex, real, common ring, crash in 'vector' constructor

asked 10 years ago

beeson gravatar image

updated 10 years ago

tmonteil gravatar image
(x,y,z) = var('x,y,z')
x = z.real_part()
y = z.imag_part()
test = vector((x,1,1))
test = vector((x,y,1))
test = vector((z.real_part,1,1))

Last line causes an error, can't find common ring for all elements.
These variables all have type "Expression"; but some expressions denote complex numbers and some denote real numbers. How do I tell sage about that? (Sage 6.5 on Mac OS 10).

Preview: (hide)

Comments

Didn't you forgot parenthesis in z.real_part() ?

tmonteil gravatar imagetmonteil ( 10 years ago )

tmonteil is right, your last line should be test = vector((z.real_part(),1,1)).

slelievre gravatar imageslelievre ( 10 years ago )