2

I'm trying to find if this function is odd or even :

$f(x) = \log(3x + \sqrt{9x^2 + 1})$

I know that it's an odd one because if I try $f(x) + f(-x) = 0$ it shows that it's odd. But I want to know how to figure problems like this? I used this method http://www.purplemath.com/modules/fcnnot3.htm ( plug -x to check ) but its not working here.

Trajan
  • 5,194
  • 2
  • 27
  • 71

2 Answers2

2

We have $$\begin{align}f(x)+f(-x)&=\ln(3x+\sqrt{9x^2+1})+\ln(-3x+\sqrt{9x^2+1})\\&=\ln\left((3x++\sqrt{9x^2+1})(-3x+\sqrt{9x^2+1})\right)=\ln 1=0.\end{align}$$

André Nicolas
  • 507,029
1

Hint \begin{align*}f(x)&=\log{(3x+\sqrt{9x^2+1})}=\log{\left(\dfrac{(\sqrt{9x^2+1}-3x)(\sqrt{9x^2+1}+3x)}{\sqrt{9x^2+1}-3x}\right)}\\ &=\log{\dfrac{1}{\sqrt{9x^2+1}-3x}}=-\log{(\sqrt{(-3x)^2+1}-3x)}\\ &=-f(-x) \end{align*}

math110
  • 93,304