Skip to main content
Logo image

Section 2.4 The Assignment let_:=

The instruction let \(a:=b\) assigns the value of \(b\) to \(a\) . For example after the instruction let \(a:=5\) , the variable \(a\) has the value \(5\) . Assume that the variable \(a\) has the value \(5\) ; then after let \(a:=a+1\) , the variable \(a\) has the value \(6\) . This occurs because we first evaluate that \(a +1\) is \(6\) (since \(a = 5\) ) and then assign \(6\) to the variable \(a\) .
In the video in Figure 2.23 we introduce the assignment instruction let_:= and give first examples.
Figure 2.23. Algorithms -- The Assignment \(let\) (by Matt Farmer and Stephen Steward)
The assignment instruction let_:= can be used in two ways. We can assign a value to a variable that did not have a value so far or we can assign new value to an existing variable, that we change the value of an existing variable.

Example 2.24. Uses of let _ \(:=\).

We give examples for the use of the instruction let _ \(:=\) .
  1. The easiest use of let is to assign a value to a variable, for example we can use it to assign the value \(0\) to \(i\) :
    let \(i:=0\)
    After this instruction the value of the variable \(i\) is \(0\) .
  2. We can also use let to assign the value of an expression to a variable. Assume that the value of the variable \(c\) is \(10\) . Consider the instruction:
    let \(d:=c+35\)
    First the expression on the right is evaluated. As \(c=10\) we get that \(c+35=10+35=45\) . Then the computed value 45 is assigned to \(d\) , so that the value of \(d\) after this instruction is \(45\) .
  3. It is more confusing when the same variable shows up on both sides of the \(:=\) of a let instruction. Assume that the value of i is 5 and consider the instruction:
    let \(i:=i+1\)
    First the expression on the right is evaluated, we obtain \(i+1=5+1=6\) . Then the result of this computation, namely 6, is assigned to \(i\) , so that the new value of \(i\) is 6.
The next algorithm computes the same values as Algorithm 2.7 , namely \(c\) , \(c^2\) , \(c^3\) , and \(c^4\) .
We now illustrate how Algorithm 2.25 works with an example.

Example 2.26. Algorithm 2.25 with input \(c=-3\).

We follow the steps of the Algorithm 2.25 for the input \(c=-3\)
Input \(c=-3\)
  1. let \(d:=c\cdot c\text{:}\) We have \(c=-3\) . We compute \(c\cdot c=(-3)\cdot (-3)3= 9\) and assign this value to the variable \(d\) . Now \(d=9\) .
  2. let \(e:=c\cdot d\text{:}\) We have \(c=-3\) and \(d=9\) . We compute \(c\cdot d=(-3)\cdot 9=-27\) and assign this value to the variable \(e\) . Now \(e=-27\) .
  3. let \(f:=d\cdot d\text{:}\) We have \(d=9\) . We compute \(d\cdot d=9\cdot 9=81\) and assign this value to the variable \(f\) .
  4. return \(c\text{,}\) \(d\) , \(e\) , \(f\) : We return the values of \(c\) , \(d\) , \(e\) , and \(f\) , namely \(-3\) , 9, \(-27\) , and 81
Output \(-3\text{,}\) 9, \(-27\) , 81
So when the input to Algorithm 2.25 is \(c=-3\) the output is \(-3\) , \(9\) , \(-27\) , \(81\) .
The Input and Output of Algorithm 2.7 and Algorithm 2.25 are the same, but the results are obtained in different ways. In particular the computation effort differs.
  • Algorithm 2.7 needs one multiplication to compute \(c^2= c\cdot c\) , two multiplications to compute \(c^3= c\cdot c\cdot c\) , and three multiplications to compute \(c^4= c\cdot c\cdot c\cdot c\) (count the multiplication symbols ‘\(\cdot\)’). This is a total of 6 multiplications.
  • Algorithm 2.25 computes the same values as \(d=c\cdot c\) , \(e=c\cdot d\) , and \(f=c^2\cdot c^2\) . It only needs 3 multiplications to compute the four values \(d=c^2\) , \(e=c^3\) , and \(f=c^4\) .
Because Algorithm 2.25 needs half the number of multiplications that Algorithm 2.7 needs to compute the same values (and no additional operations) Algorithm 2.25 is more efficient than Algorithm 2.7 .
Using the same strategy as in Algorithm 2.25 the algorithm in Example 2.27 computes the eighth power of the input. This is the first in a series of interactive algorithms in which you can observe how the instructions change the values of variables by clicking on the instructions.

Example 2.27. Eighth power algorithm interactive.

In Checkpoint 2.28 determine the values returned for by the algorithm for the given input values.

Checkpoint 2.28. Find the output values and determine the output.

Consider the algorithm:
Algorithm
Input: Two integers \(a\) and \(b\text{.}\)
(1) let \(c:=a+b\)
(2) let \(d:=a\cdot b\)
(3) let \(e:= d-c\)
(4) return \(d\)
What does the algorithm return when the input is \(a=-8\) and \(b=-6\) ?
What does the algorithm return when the input is \(a=-8\) and \(b=10\) ?
What does the algorithm return when the input is \(a=2\) and \(b=-7\) ?
What does the algorithm return when the input is \(a=4\) and \(b=5\) ?