morrowcosom said:
The reason I went from
= (1/h) (4h)/ (3(3/2+h))
to
= 1/ (3h)/(3(3/2+h))
Is because I thought that I was canceling the denominator of (1/h) and as a result only able to cancel one h out of the other numerator 4h which left me with 3h as that numerator.
You are confused about how cancelling works. As I suggested before, it would be a good idea for you to spend some time with your old algebra book (or get another one if you don't have that book any more) and review the operations with fractions and rational expressions.
\frac{1}{h} \cdot \frac{4h}{3(3/2 + h)} = \frac{h}{h} \cdot \frac{4}{3(3/2 + h)}= \frac{4}{3(3/2 + h)}
What you apparently did was to subtract h from 4h to get 3h.
morrowcosom said:
I am confused as how to simplify the like h terms in this problem.
Also, where do I actually input my data so that it can be displayed in a latex format?
I do my LaTeX by hand, although I think there are some tools that have a nice user interface. Here are some links to Web pages about using LaTeX.
http://www.artofproblemsolving.com/Wiki/index.php/LaTeX:Commands
http://heather.cs.ucdavis.edu/~matloff/LaTeX/LookHereFirst.html
http://andy-roberts.net/misc/latex/latextutorial9.html
A LaTeX expression or equation begins with a [ tex] tag and ends with a [ /tex] tag. I have an extra space here so that the tags will be visible.
For a fraction, use \frac{}{} -- inside the tex tags. The expression inside the first pair of braces is the numerator, and the expression inside the second pair is the denominator.
Here's an example. To make it render correctly remove the extra space in the tex and /tex tags.
[ tex]\frac{4}{3(3/2 + h)}[ /tex]
Here it is with the corrected tex and /tex tags:
\frac{4}{3(3/2 + h)}
If you click the expression above, a new window opens that shows the LaTeX code.
You can do lots of things with LaTeX. For each example I show the LaTeX code as it would look (but with an extra space in the tex and /tex tags to keep it from rendering).
exponents: [ tex]2^{x + 3}[ /tex]
2^{x + 3}
subscripts:
[ tex]a_1 + a_2[ /tex]
a_1 + a_2
limits:
[ tex]\lim_{h \to 0} \frac{f(a + h) - f(a)}{h} [ /tex]
\lim_{h \to 0} \frac{f(a + h) - f(a)}{h}
derivatives:
[ tex]\frac{d}{dx}x^n = nx^{n - 1}[ /tex]
\frac{d}{dx}x^n = nx^{n - 1}
integrals:
[ tex]\int 3x^2 dx = x^3 + C [ /tex]
\int 3x^2 dx = x^3 + C
[ tex]\int_0^2 3x^2 dx [ /tex]
\int_0^2 3x^2 dx
And lots more...