Question

Using a calculator, multiply this number by itself ten times (N x N x N x...

Using a calculator, multiply this number by itself ten times (N x N x N x N …. x N, or N10). This is the probability that the polygraph would have guessed correctly ALL TEN TIMES.   

Homework Answers

Answer #1

Let's use TI-84 Plus calculator

Suppose the probability  that the polygraph would have guessed correctly = 80% = 0.80

So here we need to find 0.80^10 or ( 0.80*0.80*0.80*0.80*0.80*0.80*0.80*0.80*0.80*0.80).

Click on 0.80 then ^ then 10 and then ENTER so we get the following output.

Similarly we can find any power of any value in the calculator.

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
13. Explain, why you have to multiply the probability of X and the probability of Y,...
13. Explain, why you have to multiply the probability of X and the probability of Y, when you want to calculate a probability of both X and Y occurring together. For example, the probability of obtaining an A grade in both the midterm and the final exam using an example AND/OR diagram.
PHP calculator problem Create a calculator class that will add, subtract, multiply, and divide two numbers....
PHP calculator problem Create a calculator class that will add, subtract, multiply, and divide two numbers. It will have a method that will accept three arguments consisting of a string and two numbers example ("+", 4, 5) where the string is the operator and the numbers are what will be used in the calculation. It doesn't need an HTML form, all the arguments are put in through the method. The class must check for a correct operator (+,*,-,/), and a...
In Java. Write a program that reads-in a times table-number. The program, using this table-number will...
In Java. Write a program that reads-in a times table-number. The program, using this table-number will produce the following report (as shown). The first item in the report is a number with starting value 1. Second column is the word “ X ” (representing the times symbol). Third column is the table-number (itself). Following is an equal sign “ = “ (representing a result). Last column is the result of the operation for that line or row which is the...
1. A fair coin is tossed ten times. (a) What is the probability that all ten...
1. A fair coin is tossed ten times. (a) What is the probability that all ten tosses produce the small result? (b) What is the probability that the results alternate, i,e., Tail is followed by Head and head is followed by Tail? (c) What is the probability that the first five tosses produce identical results? 2. A point M is chosen in random within the unit square . (a) What is the probability that M is closer to Y- axis...
The language of code in C#. Finds the number of times a word occurs by itself...
The language of code in C#. Finds the number of times a word occurs by itself (as a complete word) or as part of another word in the given "wordFragment" substring. For example in the string "The bon in bonbon", we count 2 occurrences of bon. Please write a simple code without the use of advanced features such as LINQ. It's recommended using the Dictionary feature. Returns the number of times wordFragment occurs in the file that WordCounter is associated...
5. If you toss a coin 10 times, you got 8 head out of ten tosses....
5. If you toss a coin 10 times, you got 8 head out of ten tosses. What is the probability of this event if the coin is fair (P[X=8|Coin=normal], X is a random variable representing number of head out of ten tosses)? What is the probability of this event if the coin is fake( P[X=8|Coin=fake])?
A random number generator picks a number from two to ten in a uniform manners X~__________...
A random number generator picks a number from two to ten in a uniform manners X~__________ (Hint: what X represents?) Graph the probability distribution. Find the Mean Find the Standard deviation P(3.6 < x < 7.45) =
When a fair coin is flipped N times, the average number of heads <n> , is...
When a fair coin is flipped N times, the average number of heads <n> , is N/2 and, in any particular trail, the “fluctuation” about this average, the standard deviation (variance), is expected to be sigma = sqrt(<n^2>-,<n>^2) . Calculate the probability that for N=16 the number of heads in one trail will be outside the expected range N/2+ sigma  to N/2- sigma
Suppose a coin is tossed three times. (a) Using the "c" and "s" labels, list all...
Suppose a coin is tossed three times. (a) Using the "c" and "s" labels, list all possible outcomes in the sample space. (b) For each result in the sample space, define the random variable X as the number of faces minus the number of stamps observed. Use the fact that all the results from part (a) have the same probability. Find the probability distribution of X. (c) Use the probability distribution found in (b) to find the mean and standard...
Find the exact number of times (in terms of n) the innermost statement (X = X...
Find the exact number of times (in terms of n) the innermost statement (X = X + 1) is executed in the following code. That is, find the final value of X. Then express the total running time in terms of O( ), Ω( ), or Θ( ) as appropriate. X = 0; for k = 1 to n     for j = 1 to n – k         X = X + 1; The following program computes and returns...