How many times will the innermost loop be iterated when the algorithm segment is implemented and run? Assume n, k, j, and i are positive integers. for k := 1 ton for j := k to n for i :=j to n [Statements in the body of the inner loop, none containing branching statements that lead outside the loop] next i next j next k As in Example 9.6.4, sketch a trace table for the algorithm segment and notice that because i goes from j to n, it is always the case that i ? vi. Similarly, it is always the case that j ? vk and that k ? v 1. Thus, the number of iterations of the innermost loop is the same as the number of
How many times will the innermost loop be iterated when the algorithm segment is implemented and run? Assume n, k, j, and i are positive integers. for k := 1 ton for j := k to n for i :=j to n [Statements in the body of the inner loop, none containing branching statements that lead outside the loop] next i next j next k As in Example 9.6.4, sketch a trace table for the algorithm segment and notice that because i goes from j to n, it is always the case that i ? vi. Similarly, it is always the case that j ? vk and that k ? v 1. Thus, the number of iterations of the innermost loop is the same as the number of
Advanced Engineering Mathematics
10th Edition
ISBN:9780470458365
Author:Erwin Kreyszig
Publisher:Erwin Kreyszig
Chapter2: Second-order Linear Odes
Section: Chapter Questions
Problem 1RQ
Related questions
Question
Please help me with the first three small boxes!!
![Example 9.6.4
Counting Iterations of a Loop
How many times will the innermost loop be iterated when the algorithm segment below is
implemented and run? (Assume n is a positive integer.)
for k:= 1 te n
for j:= 1 to k
for i:= 1 to j
[Statements in the body of the inner loop,
none containing branching statements that lead
outside the loop]
next i
nextj
next k
Solution
Construct a trace table for the values of k. j, and i for which the statements in the body of the
innermost loop are executed.
2-
3-
2
2-
3-
3D
2.
Because i goes from 1 to j, it is always the case that i< j. Similarly, because j goes from 1 to k it is
always the case that j< k. To focus on the details of the table construction, consider what happens
when k 3. In this case, j takes each value 1, 2, and 3. When j=1, i can only take the value 1 (because
i<i). Whenj= 2, i takes each value 1 and 2 (again because i < j). When, = 3. i takes each value 1. 2.
and 3 (yet again because i <).
Observe that there is one iteration of the innermost loop for each column of the table, and there is
one column of the table for each triple of integers (i. (1,3, k) with 1<isjsAsn Now Example 9.6.3
showed that the number of such triples is [n (n+ 1) (n+2)|/6. Thus there are [n (n + 1) (n + 2)|/6
iterations of the innermost loop.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F9de35394-b566-452d-a0dc-ecbc1ac42ab5%2Ffdebebd7-4cb5-4070-b3e3-9a7e7478cbb5%2Ffjgfxd_processed.jpeg&w=3840&q=75)
Transcribed Image Text:Example 9.6.4
Counting Iterations of a Loop
How many times will the innermost loop be iterated when the algorithm segment below is
implemented and run? (Assume n is a positive integer.)
for k:= 1 te n
for j:= 1 to k
for i:= 1 to j
[Statements in the body of the inner loop,
none containing branching statements that lead
outside the loop]
next i
nextj
next k
Solution
Construct a trace table for the values of k. j, and i for which the statements in the body of the
innermost loop are executed.
2-
3-
2
2-
3-
3D
2.
Because i goes from 1 to j, it is always the case that i< j. Similarly, because j goes from 1 to k it is
always the case that j< k. To focus on the details of the table construction, consider what happens
when k 3. In this case, j takes each value 1, 2, and 3. When j=1, i can only take the value 1 (because
i<i). Whenj= 2, i takes each value 1 and 2 (again because i < j). When, = 3. i takes each value 1. 2.
and 3 (yet again because i <).
Observe that there is one iteration of the innermost loop for each column of the table, and there is
one column of the table for each triple of integers (i. (1,3, k) with 1<isjsAsn Now Example 9.6.3
showed that the number of such triples is [n (n+ 1) (n+2)|/6. Thus there are [n (n + 1) (n + 2)|/6
iterations of the innermost loop.
![How many times will the innermost loop be iterated when the algorithm segment is implemented and run? Assume n, k, j, and i are positive
integers.
for k := 1 ton
for j := k to n
for i := j to n
[Statements in the body of the inner loop,
none containing branching statements
that lead outside the loop]
next i
next j
next k
As in Example 9.6.4, sketch a trace table for the algorithm segment and notice that because i goes from j to n, it is always the case that i ? vi.
Similarly, it is always the case that j ? v k and that k ? v 1. Thus, the number of iterations of the innermost loop is the same as the number of
integer triples (i, j, k) that are related to each other in a certain way, and this is the same as the number of strings of ? v vertical bars and
? crosses, where the position of the crosses indicate which ? v integers from 1 to n are included in the triple. Thus, the answer is](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F9de35394-b566-452d-a0dc-ecbc1ac42ab5%2Ffdebebd7-4cb5-4070-b3e3-9a7e7478cbb5%2F2xm0jm_processed.jpeg&w=3840&q=75)
Transcribed Image Text:How many times will the innermost loop be iterated when the algorithm segment is implemented and run? Assume n, k, j, and i are positive
integers.
for k := 1 ton
for j := k to n
for i := j to n
[Statements in the body of the inner loop,
none containing branching statements
that lead outside the loop]
next i
next j
next k
As in Example 9.6.4, sketch a trace table for the algorithm segment and notice that because i goes from j to n, it is always the case that i ? vi.
Similarly, it is always the case that j ? v k and that k ? v 1. Thus, the number of iterations of the innermost loop is the same as the number of
integer triples (i, j, k) that are related to each other in a certain way, and this is the same as the number of strings of ? v vertical bars and
? crosses, where the position of the crosses indicate which ? v integers from 1 to n are included in the triple. Thus, the answer is
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Recommended textbooks for you
![Advanced Engineering Mathematics](https://www.bartleby.com/isbn_cover_images/9780470458365/9780470458365_smallCoverImage.gif)
Advanced Engineering Mathematics
Advanced Math
ISBN:
9780470458365
Author:
Erwin Kreyszig
Publisher:
Wiley, John & Sons, Incorporated
![Numerical Methods for Engineers](https://www.bartleby.com/isbn_cover_images/9780073397924/9780073397924_smallCoverImage.gif)
Numerical Methods for Engineers
Advanced Math
ISBN:
9780073397924
Author:
Steven C. Chapra Dr., Raymond P. Canale
Publisher:
McGraw-Hill Education
![Introductory Mathematics for Engineering Applicat…](https://www.bartleby.com/isbn_cover_images/9781118141809/9781118141809_smallCoverImage.gif)
Introductory Mathematics for Engineering Applicat…
Advanced Math
ISBN:
9781118141809
Author:
Nathan Klingbeil
Publisher:
WILEY
![Advanced Engineering Mathematics](https://www.bartleby.com/isbn_cover_images/9780470458365/9780470458365_smallCoverImage.gif)
Advanced Engineering Mathematics
Advanced Math
ISBN:
9780470458365
Author:
Erwin Kreyszig
Publisher:
Wiley, John & Sons, Incorporated
![Numerical Methods for Engineers](https://www.bartleby.com/isbn_cover_images/9780073397924/9780073397924_smallCoverImage.gif)
Numerical Methods for Engineers
Advanced Math
ISBN:
9780073397924
Author:
Steven C. Chapra Dr., Raymond P. Canale
Publisher:
McGraw-Hill Education
![Introductory Mathematics for Engineering Applicat…](https://www.bartleby.com/isbn_cover_images/9781118141809/9781118141809_smallCoverImage.gif)
Introductory Mathematics for Engineering Applicat…
Advanced Math
ISBN:
9781118141809
Author:
Nathan Klingbeil
Publisher:
WILEY
![Mathematics For Machine Technology](https://www.bartleby.com/isbn_cover_images/9781337798310/9781337798310_smallCoverImage.jpg)
Mathematics For Machine Technology
Advanced Math
ISBN:
9781337798310
Author:
Peterson, John.
Publisher:
Cengage Learning,
![Basic Technical Mathematics](https://www.bartleby.com/isbn_cover_images/9780134437705/9780134437705_smallCoverImage.gif)
![Topology](https://www.bartleby.com/isbn_cover_images/9780134689517/9780134689517_smallCoverImage.gif)