First time here? Check out the FAQ!

Ask Your Question
3

assign variable value

asked 8 years ago

anonymous user

Anonymous

Hi!

I'm just getting started with Sage and therefore my question may sound really stupid (and nevertheless I couldn't find an answer here). I have a matrix with both symbolic entries and numerical values, let's say:

a,b=var('a,b')    
M=matrix([[1,a], [0,b]])

Now I want do assign a value to a:

a=0

However if I print M to the screen it still says a in the matrix and not 0.

You can clearly see that I'm really not used to Sage, so what's the problem here? What should I do if I want to assign a fixed value to a variable which is also used in the calculations where this variable appears?

Thank's for the answers, I know this will sound highly trivial for you!

Philipp

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
1

answered 8 years ago

tmonteil gravatar image

You can just use substitution:

sage: M.substitute(a=0)
[1 0]
[0 b]
Preview: (hide)
link

Comments

Thanks you!

philipp7 gravatar imagephilipp7 ( 8 years ago )
2

answered 8 years ago

ndomes gravatar image

May be you can achieve what you want via an anonymous function.

a,b=var('a,b')    
M = lambda a,b : matrix([[1,a], [0,b]])
A = M(a,b)
show(A)
B = M(a=0,b=b)
show(B)
Preview: (hide)
link

Comments

Thank you! Not such a nice intuitive solution as I hoped to get, I admit. However, this just seems to be quite different in Sage compared to e.g. Mathematica.

philipp7 gravatar imagephilipp7 ( 8 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: 8 years ago

Seen: 4,880 times

Last updated: Oct 11 '16