answersLogoWhite

0


Best Answer

Yes, if p=1 that means an event is 100% certain to happen. For example, p value for picking a day of the week in the Enlish Language that ends in AY is 1 or 100%.

  1. P values can be anywhere between 0 and 1 inclusive. For for an event, E, we can always say 0< or equal to P(E)< or equal to 1.
User Avatar

Wiki User

11y ago

Still curious? Ask our experts.

Chat with our AI personalities

RossRoss
Every question is just a happy little opportunity.
Chat with Ross
CoachCoach
Success isn't just about winning—it's about vision, patience, and playing the long game.
Chat with Coach
FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran

Add your answer:

Earn +20 pts
Q: Can p value equal 1
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does 5 times p equal?

That depends on the value of "p".


What is the value of p if p-6 equals -5?

-1


Difference between plus plus p and p plus plus?

++p increments p by 1 unit and returns the result. This is known as pre-increment.int p = 0;int q = ++p; // q=1, p=1.This is effectively the same as saying:int p = 0;p = p + 1; // p= 1.int q = p; // q = 1.p++ also increments p by 1 unit, but returns the previous value of p, not the current value. This is known as post-increment.int p = 0;int q = p++; // q=0, p=1.This is the same as saying:int p = 0;int q = p; // q = 0.p = p + 1; // p = 1.Of the two forms, ++p is marginally quicker because p++ employs a temporary variable for the return value, whereas ++p does not. As such, ++p is the preferred form for looping purposes:for( int p=0; p


How many P's are equal in value to 0 pound and 8 p?

eight &pound;0.08 = 8 pence


What is 5 greater than or equal to p minus 3?

It is an inequality than can be solved for p: 5 &ge; p - 3 &rarr; p - 3 &le; 5 &rarr; p &le; 8 So any value less than, or equal to, 8 will do for p.


What is the value of p 5(p plus 6)25?

If 5*(p + 6) = 25 then p is -1


What is the value of p?

q-1


What is 1 minus the p-value?

It is the probability of the observed value.


What is the value of 1/2x when x is equal to 10?

When x is equal to 10, the value of 1/2x is 5.


What type of operator can be used to determine whether a specific relationship that exists between two values?

The relational operators: ==, !=, =.p == q; // evaluates true if the value of p and q are equal, false otherwise.p != q; // evaluates true of the value of p and q are not equal, false otherwise.p < q; // evaluates true if the value of p is less than q, false otherwise.p q; // evaluates true if the value of p is greater than q, false otherwise.p >= q; // evaluates true of the value of p is greater than or equal to q, false otherwiseNote that all of these expressions can be expressed logically in terms of the less than operator alone:p == q is the same as NOT (p < q) AND NOT (q < p)p != q is the same as (p < q) OR (q < p)p < q is the same as p < q (obviously)p q is the same as (q < p)p >= q is the same as NOT (p < q)


What are rational numbers that are also integers?

All integers {..., -2, -1, 0, 1, 2, ...} are rational numbers because they can be expressed as p/q where p and q are integers. Let p equal whatever the integer is and q equal 1. Then p/q = p/1 = p where p is any integer. Thus, all integers are rational numbers.


What value of p is the solution set of 5p - 1 equals 2p plus 20?

To find the value of p, simply use addition, subtraction and division to isolate p: 5p -1 = 2p + 20 5p - 2p - 1 = 2p - 2p + 20 3p - 1 + 1 = 20 + 1 3p/3 = 21/3 p = 7 The value of p is 7.