Ask Your Question
1

converting expressions into latex code

asked 2011-04-09 07:36:47 +0200

ebs gravatar image

updated 2011-05-12 16:13:23 +0200

Kelvin Li gravatar image

latex( (lim((sin(tan(x))-tan(sin(x)))/x^7,x=0)))

returns the latex code of the answer ie -1/30 but I want the latex code of the limit unevaluated so that I can generate an image of the question from it. How can I do this?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2011-04-09 16:42:53 +0200

benjaminfjones gravatar image

updated 2011-04-09 17:03:12 +0200

You can produce latex code for the function you are taking a limit of and then just add the limit by hand:

sage: expr = (sin(tan(x))-tan(sin(x)))/x^7
sage: latex_limit = '$\\lim_{x \\to 0}' + latex(expr) + '$'
sage: view(latex_limit)

$\lim_{x \to 0}\frac{\sin\left(\tan\left(x\right)\right) - \tan\left(\sin\left(x\right)\right)}{x^{7}}$

By the way, some expressions in Sage take an optional parameter hold which prevents evaluation of symbolic expressions, e.g.

sage: sin(2*pi)
0
sage: sin(2*pi, hold=True)
sin(2*pi)

But the limit function doesn't take this parameter.

edit flag offensive delete link more

Comments

I don't know that any of our 'calculus' things do that yet, though certainly Maxima can with a prepended apostrophe. It's 'normal' functions that seem to allow that (via Pynac). Should we open a ticket for something like this? We get such unevaluated nounforms back from Maxima all the time for limits and integrals; Pynac usually can do something with derivatives.

kcrisman gravatar imagekcrisman ( 2011-04-12 00:10:19 +0200 )edit

Your Answer

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

Add Answer

Question Tools

Stats

Asked: 2011-04-09 07:36:47 +0200

Seen: 649 times

Last updated: Apr 09 '11