Ask Your Question
1

SAT Math Level 2 Subject Test Sample Question #19 [closed]

asked 2010-10-18 15:28:00 +0200

ccanonc gravatar image

updated 2011-05-12 23:55:05 +0200

Kelvin Li gravatar image

What is the limit of $f(x)$ as $x$ approaches infinity, for $f(x) = (4*3 + 3x) / (-12 + 2x)$ ?

edit retag flag offensive reopen merge delete

Closed for the following reason the question is answered, right answer was accepted by ccanonc
close date 2010-11-15 21:41:13

Comments

Thanks for showing me how to do MathJax Evgeny!

ccanonc gravatar imageccanonc ( 2010-10-18 15:51:34 +0200 )edit

1 Answer

Sort by ยป oldest newest most voted
3

answered 2010-10-18 17:03:04 +0200

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)
edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2010-10-18 15:28:00 +0200

Seen: 795 times

Last updated: Oct 18 '10