代写代考 COMPSYS 705 Formal Methods for Safety Critical Software Test, 17 October 20

The University of Auckland
Department of Electrical, Computer and Software Engineering
COMPSYS 705 Formal Methods for Safety Critical Software Test, 17 October 2023
Question Mark Q1

Copyright By PowCoder代写 加微信 powcoder

Q2 Q3 Q4 Q5 Q6 Total
Last name Name ID
1. Answer ALL questions. Part I (Partha’s part) covers 70 marks, while Part II (Avinash’s Part) covers 30 marks in this test.
2. Questions 1-4 are for Part I and the rest are Part II.
3. The maximum score on this test is 100 marks.
4. Weighting is 50%.
5. Show all code for Questions 5 and 6.
6. Write answer in the box provided.
7. Answers should be legible.

1. Answer the following questions related to the process algebra CCS (20 Marks):
(a) Consider two processes P,Q shown in Figure 1. Are these processes bisimilar, weakly bisimilar, similar or there is no relationship between them? Justify your selection mat- hematically by either finding the corresponding relation or showing the absence of any such relation. (5 Marks)
9 10 11 ba
Figure 1: Two CCS Processes
(b) Consider two processes P and Q defined using system of Equations 1 and Equations 2 respectively. Draw the label transition system (LTS) corresponding to these two pro- cesses and then draw the LTS corresponding to P||Q (draw only up to the second-level successors). (10 Marks)
P=△ a.P1+b.c.P2 P 1 =△ a . P + b . P P 2 =△ b . P
Q =△ a . Q 1 Q 1 =△ a . Q
(c) Which is stronger: simulation or bisimulation and why? Justify using a suitable example. (5 Marks)

Answer box for Q1

Answer box for Q1 continued

2. Temporal logic and model checking (20 Marks)
(a) Show all the steps of model checking the formula AF(¬P1∧¬P2)∨P3 over the model shown in Figure 2. Does, the model satisfy this property? (10 Marks)
P1, P2 P1, P2
Figure 2: An example Kripke model
(b) Identify valid CTL formulae from the following with suitable justification. Convert the valid formulae you identified into their equivalent forms that are just using adequate sets. Here, AP = {p1, p2, p3} and the converted formulae can only include temporal operators EX,EG,EU. (10 Marks)
• (AG(p1⇒AX(p1∧p2))) • AF(p1⇒FG(p1Up2))
• AF(p1⇒AXp2)
• ((AFp⇒EGq)UEFp)

Answer box for Q2

Answer box for Q2 continued

3. Real-time systems and automata (20 Marks)
Figure 3: Two automata
(a) Let Σ = {a,b,c,d} and let A1,A2 be two automata as shown in Figure 3. Answer the following questions: (10 Marks)
• Draw the product automaton.
• bbabab∗ is accepted by A1? Is this true or false? Justify.
• b∗d∗a∗b∗ is accepted by A2? Is this true or false? Justify.
• bbbb∗a∗d∗c∗ is accepted by A1TA2? Is this true or false? Justify. • aabc∗d∗b ∈ Σ∗. Is this true or false? Justify.
(b) In a timed automata which of the following are valid clock constraints and why? Assume that x,y,z are clocks. (5 Marks)
i. z>=12∧x==20 ii. x+y>=25
iii. x−y<=z iv. z==x+5 v. x−z>=1000
(c) Distinguish between run-time verification and run-time enforcement. Which one is more
suitable for securing pacemakers and why? (5 Marks)

Answer box for Q3

Answer box for Q3 continued

4. Short answer questions (10 Marks)
(a) We studied some approaches for using run-time verification for securing pacemakers. Using a suitable diagram, explain how such a monitor works, without being able to access the pacemaker directly.
(b) Provide an example property as a timed automaton, which can be used by a run-time verification monitor, to determine if a pacemaker has been hacked by using an ECG sensor?

Answer box for Q4

Answer box for Q4 continued

5. Prove that the swap1 and swap2 functions below return the same swapped values for all the same inputs a and b of type int. Encode the equivalence (validation) problem as SMT constraints in Z3 Python API. Show the Python code. (15 marks)
def swap1(a, b): def swap2(a, b): tmp = b a = a + b
a = tmp a = a – b return a, b return a, b

Answer box for Q5

Answer box for Q5 continued

6. Figure 4 gives two FSMs executing currently on a single CPU. (1) Draw/give the asynchronous product of the two FSMs as a single FSM. (2) Model all the traces/paths of the asynchronous product FSM from (1) using Python Z3 API (see appendix later/below for API functions and their usage). (3) Pose the LTL safety property □(¬((S1 == 1) ∧ (S2 == 1))), where S1 and S2 are integer (int) state variables, to Z3 using the Python API, so that it can check this property on the modelled traces from (2). Show all Python code and figures. (15 marks)
(a) You should need no more than 4 variables to model the traces and property. (b) This problem is called symbolic bounded model-checking.
Figure 4: Two Finite State Machines (FSMs) running asynchronously on a single CPU. Integer type variables S1 and S2 capture the state value of FSMs.

Answer box for Q6

Answer box for Q6 continued

Example Z3 API function and usage
from z3 import IntSort, Solver, sat, DeclareSort, Consts, ForAll, from z3 import Function, sat, Or, And, RealSort, Implies, Exists # Defining a new sort (type)
T = DeclareSort(‘T’)
# Defining a binary function that works with type T and returns int type
f = Function(‘f’, T, T, IntSort()) # New object of type Solver
s = Solver()
# Defining two variables of type T a, b = Consts(‘a b’, T)
# Adding a forall example constraint to solver
s.add(ForAll([a, b], a >= b))
# Example of using Exists
s.add(Exists([a, b], a < b) # Example of using Implies (a > 0 => b < 10) s.add(Implies(a > 0, b < 10)) # Example of using implies inside another operator s.add(ForAll([a, b], Implies(a > 10, b < 100))) # Defining Variables of type Int x, y = Consts('x y', IntSort()) # Adding example constraint of variables x and y s.add(And(Or(x + y > 10, x – y < 100), x * y == 90)) # Defining Variables of type Real (float) j, k = Consts('j k', RealSort()) # Adding example constraint of variables j and k s.add(And(Or(j + k > 10.90, j – k < 10/80), j * k == 90.3)) # Checking if a solution exists ret = s.check() if ret == sat: print(s.model()) # Print the result of check if sat Scratch Pad Scratch Pad 程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com