SAT Math Level 2 Subject Test Sample Question #19 [closed]
What is the limit of $f(x)$ as $x$ approaches infinity, for $f(x) = (4*3 + 3x) / (-12 + 2x)$ ?
What is the limit of $f(x)$ as $x$ approaches infinity, for $f(x) = (4*3 + 3x) / (-12 + 2x)$ ?
sage: f(x)=(4*3+3*x)/(-12+2*x)
sage: f.limit(x=Infinity)
3/2
or
sage: g=(4*3+3*x)/(-12+2*x)
sage: g.limit(x=Infinity)
3/2
or with $f$ and $g$ defined as above,
sage: limit(f, x=Infinity)
3/2
sage: limit(f(x), x=Infinity)
3/2
sage: limit(g, x=Infinity)
3/2
You can also leave out the asterisks:
sage: implicit_multiplication(True)
sage: g=(12+3x)/(-12+2x)
Asked: 2010-10-18 15:28:00 +0100
Seen: 864 times
Last updated: Oct 18 '10
SAT Math Level 2 Subject Test Sample Question #26
GRE Math Subject Test Sample Question #1 [closed]
GRE Math Subject Test Sample Question #2
GRE Math Subject Test Sample Question #3
Plotting an integral with a variable as a limit
Similar limits give very different behavior
Thanks for showing me how to do MathJax Evgeny!