Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Below we give, in Java syntax, the sumn method which computes the sum of the n natural numbers from 1 to n . For example,

Below we give, in Java syntax, the sumn method which computes the sum of the n natural numbers
from 1 to n. For example, sumn(0)==0, sumn(1)==1, sumn(2)==3, and sumn(6)==21.
// P r e c o n d i t i o n : n >=0
int sumn ( int n ){
int i =0, t =0 ;
while ( i < n ){
i = i +1 ;
t = t + i ;
}
return t ;
}
// P o s t c o n d i t i o n : t = n *( n +1)/2
a) Find a suitable loop invariant. (2 pt.)
b) Show that the invariant holds before the loop (base case).(1 pt.)
c) Show by induction that if the invariant holds after k-th iteration, and execution takes a k+1-st
iteration, the invariant still holds (inductive step).(3 pts.)
d) Show that the loop exit condition and the loop invariant imply the postcondition t = n(n+1)/2.
(2 pts.)
e) Find a suitable decrementing function. Show that the function is non-negative before loop starts,
that it decreases at each iteration and that when it reaches 0 the loop is exited. (2 pts.)
f) Implement the sum of natural numbers in Dafny.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Relational Database Technology

Authors: Suad Alagic

1st Edition

354096276X, 978-3540962762

More Books

Students also viewed these Databases questions

Question

Draw a breakeven chart to illustrate lowering price.

Answered: 1 week ago

Question

2. What are the components of IT infrastructure?

Answered: 1 week ago