1

Why is the following term true? What is the corresponding rule or how is it transformed?

$\frac{\theta}{\theta - 1 } = \frac{1} {\theta-1} + 1$

Thanks!!

hoerf
  • 13
  • 1
    This is a math question, not a Mathematica question. Has to do with adding fractions (general principle: find a common denominator). Probably this should be closed, or maybe migrated if there is an SE group that fields this sort of query. –  Jan 09 '13 at 16:56
  • agree with @DanielLichtblau and of course it is true since 1/(theta -1) + 1 is an alternative form for the left side of the equation. –  Jan 09 '13 at 17:06
  • It's not true for theta = 1. – murray Jan 09 '13 at 20:31
  • OP has not defined what $\theta$ and $1$ are and the operations used. It depends on which algebraic structure we are dealing with. division is not defined for Natural Numbers and Integers. While posting these sort of questions, you have to be explicit. – 007resu Jan 10 '13 at 02:40
  • Some one said this is not Mathematica question. TrueQ[x(x-1)==1/(x-1)+1] can be used to check this in mathematica. And it returns FALSE UNLESS YOU SPECIFY X<>1 there. – 007resu Jan 10 '13 at 02:43

2 Answers2

5

$$\frac{\theta}{\theta - 1 } = \frac{1 + \theta - 1}{\theta - 1 } = \frac{1}{\theta - 1 } + \frac{\theta - 1}{\theta - 1 } = \frac{1} {\theta-1} + 1$$

3

$$\frac{1}{\theta-1}+1=\frac{1+(\theta-1)\cdot1}{\theta-1}=\frac{1+\theta-1}{\theta-1}=\frac{\theta}{\theta-1}$$

Belgi
  • 23,150