On Wednesday, September 16, 2015 at 1:54:40 AM UTC-7, Mandeep Singh wrote:
>
> Can we declare lambda as a variable? I want to use it in eigenvalues 
> (linear algebra).
> like:
> l = var("lambda");
> It'll give error. So how can I declare it as a variable.
>

This works. I don't know if it will keep working:

sage: l=SR.symbol('lambda')
sage: l
lambda
sage: l^2+l+1
lambda^2 + lambda + 1

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-support.
For more options, visit https://groups.google.com/d/optout.

Reply via email to