Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Lesson 1 . 2 Permutations 3 ) The map of a local park is shown below. The dashed lines represent walking paths and stars represent
Lesson Permutations
The map of a local park is shown below. The dashed lines represent walking paths and stars represent the parks
entrance and exit. Assuming you want to walk directly from the park entrance to the park exit, that is you will
NOT retrace any point, how many options are there for you to take your walk? points
Use the following lines of code to answer their respective questions.
Parts a & b
for i : to do
print i
for j : to do
print j
for k : to do
print k
Parts c & d
for i : to do
for j : to do
for k : to do
print i j k
a Calculate the number of times the print statement is executed? Note that the for loops are sequential.
b What counting principle did you use?
c Calculate the number of times the print statement is executed? Note that the for loops are nested.
d What counting principle did you use The host of a party is distributing candy to the children in attendance. The host has chocolate bars and
bags of M&Ms points
a How many ways can the candy be distributed?
b If each child is to receive at least one chocolate bar and at least one bag of M&Ms how many ways can
the candy be distributed The owners of a small business purchased lottery tickets to give to their employees. points
a How many ways can the lottery tickets be distributed?
b If each employee is to receive at least two lottery tickets, how many ways can the lottery tickets be
distributed
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started