Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

asked 9 years ago

Liang gravatar image

Display symbolic expression without replacement

How to show the equation as the input var('t') cc=matrix(SR, 3, 3, t) I1=cc.trace() Q=exp(I1) show(Q)

click to hide/show revision 2
No.2 Revision

Display symbolic expression without replacement

How to show the equation as the input without "expansion". For example,

var('t')
cc=matrix(SR, 3, 3, t)
I1=cc.trace()
Q=exp(I1)
show(Q)
show(Q)

With the above code, the output would be Q=e3t

How can I generate an output as Q=eI1

click to hide/show revision 3
No.3 Revision

Display symbolic expression expressions without replacementexpansion

How to show the equation symbolic expressions without "expansion". For example,

var('t')
cc=matrix(SR, 3, 3, t)
I1=cc.trace()
Q=exp(I1)

show(Q)

With the above code, the output would be Q=e3t

How can I generate an output as Q=eI1

click to hide/show revision 4
No.4 Revision

Display symbolic expressions without expansion

How I'm trying to show write symbolic expressions without "expansion". For example, with many intermediate variables. When I use the "show" function to display the final symbolic expression, it always shows the expression with the intermediate variables replaced with the actual definition. How can I show the final expression in terms of intermediate variables? Here is a simplified example:

var('t')
cc=matrix(SR, 3, 3, t)
I1=cc.trace()
Q=exp(I1)

show(Q)

With the above code, the output would be be

Q=e3t

How can I generate an output as Q=eI1

click to hide/show revision 5
No.5 Revision

Display symbolic expressions without expansion

I'm trying to write symbolic expressions with many intermediate variables. When I use the "show" function to display the final symbolic expression, it always shows the expression with the intermediate variables replaced with the actual definition. fully expanded. How can I show the final expression in terms of intermediate variables? Here is a simplified example:

var('t')
cc=matrix(SR, 3, 3, t)
I1=cc.trace()
Q=exp(I1)

show(Q)

With the above code, the output would be

Q=e3t

How can I generate an output as Q=eI1