Message Boards Message Boards

0
|
4843 Views
|
5 Replies
|
2 Total Likes
View groups...
Share
Share this post:

Simplify this $1/Sqrt(1+1/t)$ so that it works for t=0?

Posted 6 years ago

How would I get Mathematica to simplify 1/Sqrt(1+1/t) so that it works for t = 0? I tried the FullSimplify and Simplify commands and am not sure what else to do, even after taking a look at the built in symbol's information.

POSTED BY: Joshua Champion
5 Replies

One more way:

Simplify[1/Sqrt[1 + 1/t] // ComplexExpand, {t >= 0}]
(* Sqrt[t/(1 + t)] *)
POSTED BY: Mariusz Iwaniuk
POSTED BY: Neil Singer

The expression |t|/Sqrt[t^2+t] gives errors too when t=0. Try with this:

Sqrt[t/(1 + t)]
POSTED BY: Gianluca Gorni

Well, the sort of answer I'm looking for is just obtaining the form |t|/Sqrt[t^2+t] (or something similar) which will give 0 when zero is plugged in, something that doesn't return "1/0" errors.

POSTED BY: Joshua Champion

I am not sure what you expect as a result. Here is a transformation using a replacement rule:

1/Sqrt[1 + 1/t] /. (1/Sqrt[a_] :> Sqrt[Together[1/a]])

You may also try PowerExpand, which is risky:

Simplify[PowerExpand@Together[1/Sqrt[1 + 1/t]],
 t < 0 || t > 0]

The result does not seem particularly "simpler" than the original expression.

POSTED BY: Gianluca Gorni
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract