Question: Exercise (15 points) Consider this algorithm Mid(a,b): Input: two integers a and b Output: an integer that is the midpoint between a and b (i.e.,

Exercise (15 points) Consider this algorithm Mid(a,b): Input: two integers a and b Output: an integer that is the midpoint between a and b (i.e., within equal distance from a and b). Example: Mid(4,10) = 7 Mid(amb) m = (a + b) / 2 //Integer division return m a) (5 points) Is this algorithm correct? (Answer only Yes or No) b) (10 points) Whatever is your answer, prove it using the fastest method: a counterexample. A proof by contradiction, or a proof by induction
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
