answersLogoWhite

0

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

What else can I help you with?

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


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

eight &pound;0.08 = 8 pence


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


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?

q-1


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 1/2x when x is equal to 10?

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


What is 1 minus the p-value?

It is the probability of the observed value.


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 is the value of Cos 1?

The inverse cos of 1 is equal to o degrees. You can find this answer by knowing what angle measurement has cos equal to a value of 1.


What happens when p value is equal to alpha value?

You chose whether or ot to reject the null hypothesis. Or you repeat the experiment.