3

I am solving a simple inequality with Reduce:

Reduce[r^2-d^2>0,d]

I get a correct solution, but I would like to impose the condition r>0 in order to simplify the result, how can I do that?

mattiav27
  • 6,677
  • 3
  • 28
  • 64

1 Answers1

1
FullSimplify[Reduce[r^2 - d^2 > 0, d], r > 0]
 -r < d < r

Alternatively,

Reduce[{r^2 - d^2 > 0, r > 0}, d]
 r > 0 && -Sqrt[r^2] < d < Sqrt[r^2]
FullSimplify[%, r > 0 ]
-r < d < r
kglr
  • 394,356
  • 18
  • 477
  • 896