Algebra and Trigonometry: Structure and Method, Book 2
Algebra and Trigonometry: Structure and Method, Book 2
2000th Edition
ISBN: 9780395977255
Author: MCDOUGAL LITTEL
Publisher: McDougal Littell
bartleby

Concept explainers

bartleby

Videos

Question
Book Icon
Chapter 15.9, Problem 5CE

a.

To determine

Calculate the probability of the numbers on the dice are the same.

a.

Expert Solution
Check Mark

Answer to Problem 5CE

The solution is,

  P(n)=3

Explanation of Solution

Given: The number of rolling is,

  n=12

Calculation:

Consider the rolling of a dice, then there are six possible outcomes. The sample space is {1,2,3,4,5,6} . If the dice is fair, then probability of six events are same.

  P(1)=P(2)=P(3)=P(4)=P(5)=P(6)=16

Now let’s consider the two rolling of a dice, the probability of event in a fist dice is 16 and probability for the same event in second dice is also 16 .

The same outcomes are,

  (1,1),(2,2),(3,3),(4,4),(5,5),(6,6)

  P=636=16

Consider number of rolling are,

  n=12

Then identify the numbers of outcome which are same in both the dices.

program:

clc
clear
close all
s = 6;  
n = 12;  
d = 2; 
t = 1;
out = randi([1 s],[n d t]);
a=out(:,1);
b=out(:,2);
sol=find(a==b);

Query:

  • First, define the number of tosses.
  • Then generate a random number of outcomes.
  • Then identify the numbers which are same in a and b.

b.

To determine

Calculate the probability of the numbers on the dice are the same.

b.

Expert Solution
Check Mark

Answer to Problem 5CE

The solution is,

  P(n)=11

Explanation of Solution

Given: The number of rolling is,

  n=72

Calculation:

Consider the rolling of a dice, then there are six possible outcomes. The sample space is {1,2,3,4,5,6} . If the dice is fair, then probability of six events are same.

  P(1)=P(2)=P(3)=P(4)=P(5)=P(6)=16

Now let’s consider the two rolling of a dice, the probability of event in a fist dice is 16 and probability for the same event in second dice is also 16 .

The same outcomes are,

  (1,1),(2,2),(3,3),(4,4),(5,5),(6,6)

  P=636=16

Consider number of rolling are,

  n=72

Then identify the numbers of outcome which are same in both the dices.

program:

clc
clear
close all
s = 6;  
n = 72;  
d = 2; 
t = 1;
out = randi([1 s],[n d t]);
a=out(:,1);
b=out(:,2);
sol=find(a==b);
sol1=length(sol)

Query:

  • First, define the number of tosses.
  • Then generate a random number of outcomes.
  • Then identify the numbers which are same in a and b.

c.

To determine

Calculate the probability of the numbers on the dice are the same.

c.

Expert Solution
Check Mark

Answer to Problem 5CE

The solution is,

  P(n)=23

Explanation of Solution

Given: The number of rolling is,

  n=120

Calculation:

Consider the rolling of a dice, then there are six possible outcomes. The sample space is {1,2,3,4,5,6} . If the dice is fair, then probability of six events are same.

  P(1)=P(2)=P(3)=P(4)=P(5)=P(6)=16

Now let’s consider the two rolling of a dice, the probability of event in a fist dice is 16 and probability for the same event in second dice is also 16 .

The same outcomes are,

  (1,1),(2,2),(3,3),(4,4),(5,5),(6,6)

  P=636=16

Consider number of rolling are,

  n=120

Then identify the numbers of outcome which are same in both the dices.

program:

clc
clear
close all
s = 6;  
n = 120;  
d = 2; 
t = 1;
out = randi([1 s],[n d t]);
a=out(:,1);
b=out(:,2);
sol=find(a==b);
sol1=length(sol)

Query:

  • First, define the number of tosses.
  • Then generate a random number of outcomes.
  • Then identify the numbers which are same in a and b.

d.

To determine

Calculate the probability of the numbers on the dice are the same.

d.

Expert Solution
Check Mark

Answer to Problem 5CE

The solution is,

  P(n)=120

Explanation of Solution

Given: The number of rolling is,

  n=720

Calculation:

Consider the rolling of a dice, then there are six possible outcomes. The sample space is {1,2,3,4,5,6} . If the dice is fair, then probability of six events are same.

  P(1)=P(2)=P(3)=P(4)=P(5)=P(6)=16

Now let’s consider the two rolling of a dice, the probability of event in a fist dice is 16 and probability for the same event in second dice is also 16 .

The same outcomes are,

  (1,1),(2,2),(3,3),(4,4),(5,5),(6,6)

  P=636=16

Consider number of rolling are,

  n=720

Then identify the numbers of outcome which are same in both the dices.

program:

clc
clear
close all
s = 6;  
n = 120;  
d = 2; 
t = 1;
out = randi([1 s],[n d t]);
a=out(:,1);
b=out(:,2);
sol=find(a==b);
sol1=length(sol)

sol1=length(sol)

Query:

  • First, define the number of tosses.
  • Then generate a random number of outcomes.
  • Then identify the numbers which are same in a and b.

Chapter 15 Solutions

Algebra and Trigonometry: Structure and Method, Book 2

Ch. 15.1 - Prob. 3WECh. 15.1 - Prob. 4WECh. 15.1 - Prob. 5WECh. 15.1 - Prob. 6WECh. 15.1 - Prob. 7WECh. 15.1 - Prob. 8WECh. 15.1 - Prob. 9WECh. 15.1 - Prob. 10WECh. 15.1 - Prob. 11WECh. 15.1 - Prob. 12WECh. 15.1 - Prob. 13WECh. 15.1 - Prob. 14WECh. 15.1 - Prob. 15WECh. 15.1 - Prob. 16WECh. 15.1 - Prob. 17WECh. 15.1 - Prob. 18WECh. 15.1 - Prob. 1MRECh. 15.1 - Prob. 2MRECh. 15.1 - Prob. 3MRECh. 15.1 - Prob. 4MRECh. 15.1 - Prob. 5MRECh. 15.1 - Prob. 6MRECh. 15.2 - Prob. 1OECh. 15.2 - Prob. 2OECh. 15.2 - Prob. 3OECh. 15.2 - Prob. 4OECh. 15.2 - Prob. 5OECh. 15.2 - Prob. 6OECh. 15.2 - Prob. 7OECh. 15.2 - Prob. 8OECh. 15.2 - Prob. 9OECh. 15.2 - Prob. 10OECh. 15.2 - Prob. 11OECh. 15.2 - Prob. 12OECh. 15.2 - Prob. 13OECh. 15.2 - Prob. 14OECh. 15.2 - Prob. 1WECh. 15.2 - Prob. 2WECh. 15.2 - Prob. 3WECh. 15.2 - Prob. 4WECh. 15.2 - Prob. 5WECh. 15.2 - Prob. 6WECh. 15.2 - Prob. 7WECh. 15.2 - Prob. 8WECh. 15.2 - Prob. 9WECh. 15.2 - Prob. 10WECh. 15.2 - Prob. 11WECh. 15.2 - Prob. 12WECh. 15.2 - Prob. 13WECh. 15.2 - Prob. 14WECh. 15.2 - Prob. 15WECh. 15.2 - Prob. 16WECh. 15.2 - Prob. 17WECh. 15.2 - Prob. 18WECh. 15.2 - Prob. 19WECh. 15.2 - Prob. 20WECh. 15.3 - Prob. 1OECh. 15.3 - Prob. 2OECh. 15.3 - Prob. 3OECh. 15.3 - Prob. 4OECh. 15.3 - Prob. 5OECh. 15.3 - Prob. 6OECh. 15.3 - Prob. 1WECh. 15.3 - Prob. 2WECh. 15.3 - Prob. 3WECh. 15.3 - Prob. 4WECh. 15.3 - Prob. 5WECh. 15.3 - Prob. 6WECh. 15.3 - Prob. 7WECh. 15.3 - Prob. 8WECh. 15.3 - Prob. 9WECh. 15.3 - Prob. 10WECh. 15.3 - Prob. 11WECh. 15.3 - Prob. 12WECh. 15.3 - Prob. 1MRECh. 15.3 - Prob. 2MRECh. 15.3 - Prob. 3MRECh. 15.3 - Prob. 4MRECh. 15.3 - Prob. 5MRECh. 15.3 - Prob. 6MRECh. 15.4 - Prob. 1OECh. 15.4 - Prob. 2OECh. 15.4 - Prob. 3OECh. 15.4 - Prob. 1WECh. 15.4 - Prob. 2WECh. 15.4 - Prob. 3WECh. 15.4 - Prob. 4WECh. 15.4 - Prob. 5WECh. 15.4 - Prob. 6WECh. 15.4 - Prob. 7WECh. 15.4 - Prob. 8WECh. 15.4 - Prob. 9WECh. 15.4 - Prob. 10WECh. 15.4 - Prob. 11WECh. 15.4 - Prob. 12WECh. 15.4 - Prob. 13WECh. 15.4 - Prob. 1STCh. 15.4 - Prob. 2STCh. 15.4 - Prob. 3STCh. 15.4 - Prob. 4STCh. 15.4 - Prob. 5STCh. 15.4 - Prob. 6STCh. 15.5 - Prob. 1OECh. 15.5 - Prob. 2OECh. 15.5 - Prob. 3OECh. 15.5 - Prob. 4OECh. 15.5 - Prob. 1WECh. 15.5 - Prob. 2WECh. 15.5 - Prob. 3WECh. 15.5 - Prob. 4WECh. 15.5 - Prob. 5WECh. 15.5 - Prob. 6WECh. 15.5 - Prob. 7WECh. 15.5 - Prob. 8WECh. 15.5 - Prob. 9WECh. 15.5 - Prob. 10WECh. 15.5 - Prob. 11WECh. 15.5 - Prob. 12WECh. 15.5 - Prob. 13WECh. 15.5 - Prob. 14WECh. 15.5 - Prob. 15WECh. 15.5 - Prob. 16WECh. 15.5 - Prob. 17WECh. 15.5 - Prob. 18WECh. 15.5 - Prob. 19WECh. 15.5 - Prob. 20WECh. 15.5 - Prob. 1MRECh. 15.5 - Prob. 2MRECh. 15.5 - Prob. 3MRECh. 15.5 - Prob. 4MRECh. 15.5 - Prob. 5MRECh. 15.5 - Prob. 6MRECh. 15.5 - Prob. 7MRECh. 15.5 - Prob. 8MRECh. 15.6 - Prob. 1OECh. 15.6 - Prob. 2OECh. 15.6 - Prob. 3OECh. 15.6 - Prob. 4OECh. 15.6 - Prob. 5OECh. 15.6 - Prob. 6OECh. 15.6 - Prob. 7OECh. 15.6 - Prob. 8OECh. 15.6 - Prob. 9OECh. 15.6 - Prob. 10OECh. 15.6 - Prob. 11OECh. 15.6 - Prob. 12OECh. 15.6 - Prob. 1WECh. 15.6 - Prob. 2WECh. 15.6 - Prob. 3WECh. 15.6 - Prob. 4WECh. 15.6 - Prob. 5WECh. 15.6 - Prob. 6WECh. 15.6 - Prob. 7WECh. 15.6 - Prob. 8WECh. 15.6 - Prob. 9WECh. 15.6 - Prob. 10WECh. 15.6 - Prob. 11WECh. 15.6 - Prob. 12WECh. 15.6 - Prob. 13WECh. 15.6 - Prob. 14WECh. 15.6 - Prob. 15WECh. 15.6 - Prob. 16WECh. 15.6 - Prob. 17WECh. 15.6 - Prob. 18WECh. 15.6 - Prob. 19WECh. 15.6 - Prob. 20WECh. 15.6 - Prob. 21WECh. 15.6 - Prob. 22WECh. 15.6 - Prob. 23WECh. 15.6 - Prob. 24WECh. 15.6 - Prob. 25WECh. 15.6 - Prob. 26WECh. 15.6 - Prob. 27WECh. 15.6 - Prob. 28WECh. 15.6 - Prob. 29WECh. 15.6 - Prob. 30WECh. 15.6 - Prob. 31WECh. 15.7 - Prob. 1OECh. 15.7 - Prob. 2OECh. 15.7 - Prob. 3OECh. 15.7 - Prob. 4OECh. 15.7 - Prob. 5OECh. 15.7 - Prob. 6OECh. 15.7 - Prob. 7OECh. 15.7 - Prob. 1WECh. 15.7 - Prob. 2WECh. 15.7 - Prob. 3WECh. 15.7 - Prob. 4WECh. 15.7 - Prob. 5WECh. 15.7 - Prob. 6WECh. 15.7 - Prob. 7WECh. 15.7 - Prob. 8WECh. 15.7 - Prob. 9WECh. 15.7 - Prob. 10WECh. 15.7 - Prob. 11WECh. 15.7 - Prob. 12WECh. 15.7 - Prob. 13WECh. 15.7 - Prob. 14WECh. 15.7 - Prob. 15WECh. 15.7 - Prob. 16WECh. 15.7 - Prob. 17WECh. 15.7 - Prob. 18WECh. 15.7 - Prob. 19WECh. 15.7 - Prob. 20WECh. 15.7 - Prob. 21WECh. 15.7 - Prob. 22WECh. 15.7 - Prob. 23WECh. 15.7 - Prob. 24WECh. 15.7 - Prob. 25WECh. 15.7 - Prob. 26WECh. 15.7 - Prob. 27WECh. 15.7 - Prob. 28WECh. 15.7 - Prob. 29WECh. 15.7 - Prob. 30WECh. 15.7 - Prob. 1MRECh. 15.7 - Prob. 2MRECh. 15.7 - Prob. 3MRECh. 15.7 - Prob. 4MRECh. 15.7 - Prob. 5MRECh. 15.7 - Prob. 6MRECh. 15.7 - Prob. 7MRECh. 15.7 - Prob. 8MRECh. 15.7 - Prob. 9MRECh. 15.7 - Prob. 10MRECh. 15.7 - Prob. 11MRECh. 15.7 - Prob. 12MRECh. 15.7 - Prob. 1CECh. 15.7 - Prob. 2CECh. 15.7 - Prob. 3CECh. 15.7 - Prob. 4CECh. 15.7 - Prob. 5CECh. 15.7 - Prob. 1STCh. 15.7 - Prob. 2STCh. 15.7 - Prob. 3STCh. 15.7 - Prob. 4STCh. 15.7 - Prob. 5STCh. 15.7 - Prob. 6STCh. 15.8 - Prob. 1OECh. 15.8 - Prob. 2OECh. 15.8 - Prob. 1WECh. 15.8 - Prob. 2WECh. 15.8 - Prob. 3WECh. 15.8 - Prob. 4WECh. 15.8 - Prob. 5WECh. 15.8 - Prob. 6WECh. 15.8 - Prob. 7WECh. 15.8 - Prob. 8WECh. 15.8 - Prob. 9WECh. 15.8 - Prob. 10WECh. 15.8 - Prob. 11WECh. 15.8 - Prob. 12WECh. 15.8 - Prob. 13WECh. 15.8 - Prob. 14WECh. 15.8 - Prob. 15WECh. 15.8 - Prob. 16WECh. 15.9 - Prob. 1OECh. 15.9 - Prob. 2OECh. 15.9 - Prob. 3OECh. 15.9 - Prob. 4OECh. 15.9 - Prob. 5OECh. 15.9 - Prob. 6OECh. 15.9 - Prob. 7OECh. 15.9 - Prob. 8OECh. 15.9 - Prob. 9OECh. 15.9 - Prob. 10OECh. 15.9 - Prob. 11OECh. 15.9 - Prob. 1WECh. 15.9 - Prob. 2WECh. 15.9 - Prob. 3WECh. 15.9 - Prob. 4WECh. 15.9 - Prob. 5WECh. 15.9 - Prob. 6WECh. 15.9 - Prob. 7WECh. 15.9 - Prob. 8WECh. 15.9 - Prob. 9WECh. 15.9 - Prob. 10WECh. 15.9 - Prob. 11WECh. 15.9 - Prob. 12WECh. 15.9 - Prob. 13WECh. 15.9 - Prob. 14WECh. 15.9 - Prob. 1MRECh. 15.9 - Prob. 2MRECh. 15.9 - Prob. 3MRECh. 15.9 - Prob. 4MRECh. 15.9 - Prob. 5MRECh. 15.9 - Prob. 6MRECh. 15.9 - Prob. 7MRECh. 15.9 - Prob. 8MRECh. 15.9 - Prob. 1CECh. 15.9 - Prob. 2CECh. 15.9 - Prob. 3CECh. 15.9 - Prob. 4CECh. 15.9 - Prob. 5CECh. 15.9 - Prob. 6CECh. 15.9 - Prob. 1.1ECh. 15.9 - Prob. 1.2ECh. 15.9 - Prob. 1.3ECh. 15.9 - Prob. 1.4ECh. 15.9 - Prob. 1.5ECh. 15.9 - Prob. 1.6ECh. 15.9 - Prob. 2.1ECh. 15.9 - Prob. 2.2ECh. 15.9 - Prob. 2.3ECh. 15.9 - Prob. 2.4ECh. 15.9 - Prob. 2.5ECh. 15.9 - Prob. 2.6ECh. 15.9 - Prob. 2.7ECh. 15.9 - Prob. 2.8ECh. 15.10 - Prob. 1OECh. 15.10 - Prob. 2OECh. 15.10 - Prob. 3OECh. 15.10 - Prob. 4OECh. 15.10 - Prob. 5OECh. 15.10 - Prob. 1WECh. 15.10 - Prob. 2WECh. 15.10 - Prob. 3WECh. 15.10 - Prob. 4WECh. 15.10 - Prob. 5WECh. 15.10 - Prob. 6WECh. 15.10 - Prob. 7WECh. 15.10 - Prob. 8WECh. 15.10 - Prob. 9WECh. 15.10 - Prob. 10WECh. 15.10 - Prob. 11WECh. 15.10 - Prob. 12WECh. 15.10 - Prob. 13WECh. 15.10 - Prob. 14WECh. 15.10 - Prob. 15WECh. 15.10 - Prob. 16WECh. 15.10 - Prob. 17WECh. 15.10 - Prob. 1STCh. 15.10 - Prob. 2STCh. 15.10 - Prob. 3STCh. 15.10 - Prob. 1ECh. 15.10 - Prob. 2ECh. 15 - Prob. 1CRCh. 15 - Prob. 2CRCh. 15 - Prob. 3CRCh. 15 - Prob. 4CRCh. 15 - Prob. 5CRCh. 15 - Prob. 6CRCh. 15 - Prob. 7CRCh. 15 - Prob. 8CRCh. 15 - Prob. 9CRCh. 15 - Prob. 10CRCh. 15 - Prob. 11CRCh. 15 - Prob. 12CRCh. 15 - Prob. 1CTCh. 15 - Prob. 2CTCh. 15 - Prob. 3CTCh. 15 - Prob. 4CTCh. 15 - Prob. 5CTCh. 15 - Prob. 6CTCh. 15 - Prob. 7CTCh. 15 - Prob. 8CTCh. 15 - Prob. 9CTCh. 15 - Prob. 10CTCh. 15 - Prob. 11CT
Knowledge Booster
Background pattern image
Algebra
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, algebra and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Text book image
Algebra and Trigonometry (6th Edition)
Algebra
ISBN:9780134463216
Author:Robert F. Blitzer
Publisher:PEARSON
Text book image
Contemporary Abstract Algebra
Algebra
ISBN:9781305657960
Author:Joseph Gallian
Publisher:Cengage Learning
Text book image
Linear Algebra: A Modern Introduction
Algebra
ISBN:9781285463247
Author:David Poole
Publisher:Cengage Learning
Text book image
Algebra And Trigonometry (11th Edition)
Algebra
ISBN:9780135163078
Author:Michael Sullivan
Publisher:PEARSON
Text book image
Introduction to Linear Algebra, Fifth Edition
Algebra
ISBN:9780980232776
Author:Gilbert Strang
Publisher:Wellesley-Cambridge Press
Text book image
College Algebra (Collegiate Math)
Algebra
ISBN:9780077836344
Author:Julie Miller, Donna Gerken
Publisher:McGraw-Hill Education
Use of ALGEBRA in REAL LIFE; Author: Fast and Easy Maths !;https://www.youtube.com/watch?v=9_PbWFpvkDc;License: Standard YouTube License, CC-BY
Compound Interest Formula Explained, Investment, Monthly & Continuously, Word Problems, Algebra; Author: The Organic Chemistry Tutor;https://www.youtube.com/watch?v=P182Abv3fOk;License: Standard YouTube License, CC-BY
Applications of Algebra (Digit, Age, Work, Clock, Mixture and Rate Problems); Author: EngineerProf PH;https://www.youtube.com/watch?v=Y8aJ_wYCS2g;License: Standard YouTube License, CC-BY