The following function is intended to return the value of a1
The following function is intended to return the value of a[1] + a[2] + … + a[n] for n 1.
(The sum of the first n entries in an array of integers).
Prove that the function is correct, or explain why it does not produce correct results.
ArraySumC(integers n, a[1], a[2], … , a[n])
Local variables:
integers i, j
i = 0
j = 0
while i n do
j = j + a[i]
i = i + 1
end while
// j now has the value of a[1] + a[2] + … + a[n]
return j
end function ArraySumC
Multiple Choice Answers:
begins the sum with a[0]
none of these are correct
makes one too many passes through the loop and adds a[n+1] to the sum
Q: j = a[1] + … + a[i – 1]
Q(0): j0 = a[1] + … + a[i0 – 1]
true since j = 0, i = 1 before the loop is entered, so the equation becomes
0 = a[1-1] which is 0 = a[0] and there is no a[0] term so the value is vacuously 0.
Q(k): jk = a[1] + … + a[ik – 1]
Q(k + 1): jk+1 = a[1] + … + a[ik+1 – 1]
note: jk+1 = jk + a[ik] and ik+1 = ik + 1
jk+1 left side of Q(k + 1)
jk + a[ik] assignment rule
a[1] + … + a[ik – 1] + a[ik] inductive hyp
ik+1 = ik + 1 so ik = ik+1 - 1 rewrite
a[1] + … + a[ik – 1] + a[ik+1 - 1] by substitution
This is the right side of Q(k + 1) so Q is our loop invariant
At loop termination j = a[1] + … + a[i- 1] and i = n + 1, so j = a[1] + … + a[n]
Q: j = a[1] + … + a[n – 1]
Q(0): j0 = a[1] + … + a[n – 1]
cannot be proven true for base case so the function is proven incorrect
| a. | begins the sum with a[0] | |
| b. | none of these are correct | |
| c. | makes one too many passes through the loop and adds a[n+1] to the sum | |
| d. | Q: j = a[1] + … + a[i – 1] | |
| e. | Q: j = a[1] + … + a[n – 1] Q(0): j0 = a[1] + … + a[n – 1] cannot be proven true for base case so the function is proven incorrect |
Solution
Here is the code explained where it fails:
ArraySumC(integers n, a[1], a[2], … , a[n])
Local variables:
integers i, j
i = 0
j = 0
while i n do //This loop runs for values from i = 0 to n. Note: This is running till n, and not n-1, and this starts from 0, and not 1.
j = j + a[i] //When i value is 0, it is reading value from a[0], but the input starts from a[1].
//There is no value at index a[0].
i = i + 1
end while
// j now has the value of a[1] + a[2] + … + a[n]
return j
end function ArraySumC
So, the option is: a. begins the sum with a[0]
![The following function is intended to return the value of a[1] + a[2] + … + a[n] for n 1. (The sum of the first n entries in an array of integers). Prove that t The following function is intended to return the value of a[1] + a[2] + … + a[n] for n 1. (The sum of the first n entries in an array of integers). Prove that t](/WebImages/38/the-following-function-is-intended-to-return-the-value-of-a1-1115167-1761592180-0.webp)
![The following function is intended to return the value of a[1] + a[2] + … + a[n] for n 1. (The sum of the first n entries in an array of integers). Prove that t The following function is intended to return the value of a[1] + a[2] + … + a[n] for n 1. (The sum of the first n entries in an array of integers). Prove that t](/WebImages/38/the-following-function-is-intended-to-return-the-value-of-a1-1115167-1761592180-1.webp)