Simplify and FullSimplify do not simplify a simple term

83 Views Asked by At

Why don't Simplify and FullSimplify work on: $\frac{\sqrt{a + \cos \theta}}{\sqrt{\frac{a + \cos \theta}{1 + a}}}$?

FullSimplify[ Sqrt[a + Cos[\[Theta]]] /Sqrt[(a + Cos[\[Theta]])/(
 1 + a)]]

Even if $\cos \theta \leq 0$ the term should simplify.... no?

1

There are 1 best solutions below

0
On BEST ANSWER

You need to give assumptions, try this:

    FullSimplify[ Sqrt[a + Cos[\[Theta]]] /Sqrt[(a + Cos[\[Theta]])/(
 1 + a)], Assumptions->a>1]

or try this:

    Simplify[ Sqrt[a + Cos[\[Theta]]] /Sqrt[(a + Cos[\[Theta]])/(
 1 + a)], Assumptions->a>1]