First time here? Check out the FAQ!

Ask Your Question
0

Newbie question: introducing symbols (variables) inside vectors and matrices

asked 10 years ago

stablum gravatar image

updated 10 years ago

FrédéricC gravatar image

Hi,

I would like to have linear algebra operations to be evaluated with symbols instead of numerically. For example, having the following matrix:

A = matrix(QQ,[
    [2,1,2,-6],
    [-1,2,1,7],
    [3,-1,-3,-1],
    [1,5,6,0],
    [2,2,1,1]
    ])

I would like to multiply for a vector with symbolic variables as follows:

t = 'real'
var('x1')
assume(x1,t)
var('x2')
assume(x2,t)
var('x3')
assume(x3,t)
var('x4')
assume(x4,t)
xx = vector(QQ,[x1,x2,x3,x4])
A * xx.transpose()

Unfortunately building the xx vector is unsuccessful, producing this error message:

TypeError: Cannot evaluate symbolic expression to a numeric value.

This does not work, so how can I use symbols in sage's linear algebra framework?

thank you very much, -Francesco

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 10 years ago

kcrisman gravatar image

Why don't you try not specifying a ring for the vector?

xx = vector([x1,x2,x3,x4])

It should then put things in the "symbolic ring" SR which should do what you need it to.

Preview: (hide)
link

Comments

Thanks! It worked! :)

stablum gravatar imagestablum ( 10 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 10 years ago

Seen: 821 times

Last updated: Aug 19 '14