Quiz (1 point)
Prove that:
minimum value of stack [ [ 0, [ ] ], [ [ 1, [ ] ], [ ] ] ] = [ 0, [ ] ]
The following properties may be helpful:
- [ 0, [ ] ] is less than [ 1, [ ] ]
- minimum value of stack [ x, [ ] ] = x
if a = b, then b = a
if [ 1, [ ] ] = minimum value of stack [ [ 1, [ ] ], [ ] ], then [ 0, [ ] ] is less than [ 1, [ ] ] = [ 0, [ ] ] is less than (minimum value of stack [ [ 1, [ ] ], [ ] ])
if the following are true:
- a
- a = b
then b
if a is less than (minimum value of stack xss), then minimum value of stack [ a, xss ] = a
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.