Quiz (1 point)
Prove that:
minimum value of stack [ [ 1, [ ] ], [ [ 0, [ ] ], [ ] ] ] = [ 0, [ ] ]
The following properties may be helpful:
- [ 1, [ ] ] is greater than [ 0, [ ] ]
- minimum value of stack [ x, [ ] ] = x
if the following are true:
- x is greater than y
- minimum value of stack z = y
then x is greater than (minimum value of stack z)
if xs is greater than (minimum value of stack xss), then minimum value of stack [ xs, xss ] = minimum value of stack xss
if the following are true:
- a = b
- b = c
then a = c
Please write your proof in the table below. Each row should contain one claim. The last claim is the statement that you are trying to prove.