Message Boards Message Boards

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

Format of the square root

Posted 2 years ago

I would like help with a very trivial question: When I make calculations, I get things like this: Sqrt[a] Sqrt[b] Sqrt[c]. I would like to get Sqrt[a b c]. Thank you very much

2 Replies
Posted 2 years ago

One way

Simplify[Sqrt[a] Sqrt[b] Sqrt[c], {a > 0, b > 0, c > 0}]
(* Sqrt[a b c] *)
POSTED BY: Rohit Namjoshi
Posted 2 years ago
Simplify[Sqrt[a]*Sqrt[b]*Sqrt[c], Assumptions -> Element[{a, b, c}, NonNegativeReals]]

(* Sqrt[a b c] *)
POSTED BY: Hans Milton
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