Group Abstract Group Abstract

Message Boards Message Boards

0
|
35 Views
|
1 Reply
|
0 Total Likes
View groups...
Share
Share this post:
GROUPS:

How to determine the sign of the result obtained from \(p_1-p_2\)?

Posted 1 day ago

enter image description here

p1 = (1 - (1 - p)^3) q^3 // Expand
p2 = (1 - (1 - q)^3) p^3 // Expand
p1 - p2 // Simplify // Factor
Simplify[Sign[p1 - p2], 0 < p < q]
POSTED BY: Bill Blair

You can solve the inequalities:

Reduce[p1 - p2 > 0 && 0 < p < q, {p, q}]
Reduce[p1 - p2 == 0 && 0 < p < q, {p, q}]
Reduce[p1 - p2 < 0 && 0 < p < q, {p, q}]
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