the what, why, and how of probabilistic verification...probabilistic programming joost-pieter...

51
The What, Why, and How of Probabilistic Verification Part 1: Motivation and Models Joost-Pieter Katoen CAV Invited Tutorial 2015, San Francisco Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 1/38

Upload: others

Post on 27-Jul-2020

1 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The What, Why, and How of Probabilistic VerificationPart 1: Motivation and Models

Joost-Pieter Katoen

CAV Invited Tutorial 2015, San Francisco

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 1/38

Page 2: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

Roadmap of This Tutorial

Part 1. Motivation and Models▸ More Than 5 Reasons for Probabilistic Analysis▸ Elementary Models and Properties

Part 2. Algorithmic Foundations▸ Reachability and Beyond in Discrete Markov Models▸ Timed Reachability in Continuous Markov Models

Part 3. Treating Gigantic Markov Models▸ Abstraction: Precise, Aggressive, and Compositional

Part 4. Recent Research Developments▸ Parameter Synthesis and Model Repair▸ Counterexample Generation▸ Probabilistic Programming

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38

Page 3: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

Overview

The Relevance of Probabilities

Markov Models and Properties

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 3/38

Page 4: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Overview

The Relevance of Probabilities

Markov Models and Properties

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 4/38

Page 5: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

More Than Five Reasons for Probabilities

1. Randomised Algorithms2. Reducing Complexity3. Probabilistic Programming4. Reliability5. Performance6. Optimization7. Systems Biology

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 5/38

Page 6: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Randomised Algorithms: Simulating a Die [Knuth & Yao, 1976]

Heads = “go left”; tails = “go right”.

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 6/38

Page 7: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Randomised Algorithms: Simulating a Die [Knuth & Yao, 1976]

Heads = “go left”; tails = “go right”. Does this model a six-sided die?

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 6/38

Page 8: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Distributed Computing

FLP impossibility result [Fischer et al., 1985]

In an asynchronous setting, where only one processor might crash, there is nodistributed algorithm that solves the consensus problem—getting a distributednetwork of processors to agree on a common value.

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 7/38

Page 9: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Distributed Computing

FLP impossibility result [Fischer et al., 1985]

In an asynchronous setting, where only one processor might crash, there is nodistributed algorithm that solves the consensus problem—getting a distributednetwork of processors to agree on a common value.

Ben-Or’s possibility result [Ben-Or, 1983]

If a process can make a decision based on its internal state, the messagestate, and some probabilistic state, consensus in an asynchronous setting isalmost surely possible.

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 7/38

Page 10: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Reducing Complexity: Matrix Multiplication [Freivald, 1977]

Input: three O(N2) square matrices A, B , and C

Output: yes, if A ×B = C ; no, otherwise

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 8/38

Page 11: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Reducing Complexity: Matrix Multiplication [Freivald, 1977]

Input: three O(N2) square matrices A, B , and C

Output: yes, if A ×B = C ; no, otherwise

Deterministic: compute A × B and compare with C

Complexity: in O(N3), best known complexity O(N2.37)

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 8/38

Page 12: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Reducing Complexity: Matrix Multiplication [Freivald, 1977]

Input: three O(N2) square matrices A, B , and C

Output: yes, if A ×B = C ; no, otherwise

Deterministic: compute A × B and compare with C

Complexity: in O(N3), best known complexity O(N2.37)

Randomised: 1. take a random bit-vector x⃗ of size N2. compute A × (B x⃗) − C x⃗3. output yes if this yields the null vector; no otherwise4. repeat these steps k times

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 8/38

Page 13: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Reducing Complexity: Matrix Multiplication [Freivald, 1977]

Input: three O(N2) square matrices A, B , and C

Output: yes, if A ×B = C ; no, otherwise

Deterministic: compute A × B and compare with C

Complexity: in O(N3), best known complexity O(N2.37)

Randomised: 1. take a random bit-vector x⃗ of size N2. compute A × (B x⃗) − C x⃗3. output yes if this yields the null vector; no otherwise4. repeat these steps k times

Complexity: in O(k ⋅N2), with false positive with probability ⩽ 2−k

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 8/38

Page 14: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Probabilistic Programming

2013, DARPA launched a 48M (US dollar) program on

“Probabilistic Programming (PP) for Advanced Machine Learning (ML)”

“PP is a new programming paradigm for managing uncertain information.By incorporating it into ML, we seek to greatly increase the number of people

who can successfully build ML applications,and make ML experts radically more effective”.

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 9/38

Page 15: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Probabilistic Programming: Once Upon a Time . . . . . .

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 10/38

Page 16: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Duelling Cowboys [McIver and Morgan, 2005]

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 11/38

Page 17: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Duelling Cowboys [McIver and Morgan, 2005]

Claim: cowboy A wins the duel with probability at least (1−b)⋅aa+b−a⋅b

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 11/38

Page 18: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Survivor Probability

Claim: cowboy A wins the duel with probability at least (1−b)⋅aa+b−a⋅b

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 12/38

Page 19: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Survivor Probability

Claim: cowboy A wins the duel with probability at least (1−b)⋅aa+b−a⋅b

Usage: security, machine learning, approximate computing . . . . . .

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 12/38

Page 20: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Reliability Engineering

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 13/38

Page 21: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Reliability: (Dynamic) Fault Trees [Dugan et al., 1990]

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 14/38

Page 22: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

A Fault Tree Example

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 15/38

Page 23: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

A Fault Tree Example

(D)FTs: one of —if not the— most prominent models for risk analysisAims: quantify system reliability and availability, MTTF, . . . . . .

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 15/38

Page 24: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Reliability: Architectural Languages [Feiler et al., 2010]

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 16/38

Page 25: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Reliability: Architectural Languages [Feiler et al., 2010]

[System] Power.Imp

Nominal

pr imary

b a c k u p

b a t t 1 . e m p t yb a t t 2 . e m p t y

pr imary b a c k u p

[Device] Battery.imp: batt1

NominalError Data

c h a r g e d

ene rgy ‘ = -0 .02 e n e r g y ‘ > = 2 0

e n e r g y > = 1 5 vo l t age := f ( ene rgy)

d e p l e t e d

ene rgy ‘ = -0 .03

e m p t y = > e n e r g y < 2 0

vo l t age := f ( ene rgy )

ok

d e a d

e m p t y

e n e r g y ini t 100

pr imary

vo l t age

vo l t age

[Device] Battery.imp: batt2

NominalError Data

c h a r g e d

ene rgy ‘ = -0 .02 e n e r g y ‘ > = 2 0

e n e r g y > = 1 5 vo l t age := f ( ene rgy)

d e p l e t e d

ene rgy ‘ = -0 .03

e m p t y = > e n e r g y < 2 0

vo l t age := f ( ene rgy )

ok

d e a d

e m p t y

e n e r g y ini t 100

b a c k u p

vo l t age

vo l t age

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 17/38

Page 26: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Reliability: Architectural Languages [Feiler et al., 2010]

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 18/38

Page 27: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Performance: GSPNs [Ajmone Marsan et al., 1984]

The early days:

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 19/38

Page 28: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Performance: GSPNs [Ajmone Marsan et al., 1984]

The early days:

More modern times: Petri nets with

▸ Timed transitions▸ Immediate transitions▸ Natural weights

t0

k0t1

k1

t2 k2

λ

µ

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 19/38

Page 29: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Performance: GSPNs [Ajmone Marsan et al., 1984]

The early days:

More modern times: Petri nets with

▸ Timed transitions▸ Immediate transitions▸ Natural weights

t0

k0t1

k1

t2 k2

λ

µ

Aims: quantify arrivals, waiting times, QoS, soft deadlines, . . . . . .GSPNs: very—if not the most—popular in performance modeling

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 19/38

Page 30: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Stochastic Scheduling

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 20/38

Page 31: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Encyclopedia of Optimization 2008

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 21/38

Page 32: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Stochastic Scheduling

▸ Job processing times are subject to random variability▸ machine breakdowns and repairs, job parameters, . . .▸ N independent jobs with mean duration 1

µi

▸ M identical machines▸ job processing with (or without) pre-emption

▸ Objective = minimal expected makespan—finishing time of last job

▸ SEPT policy yields minimal expected makespan (Bruno et al., JACM 1981)

“it is hard to calculate these expected values”

Which policy maximises the probability to finish all jobs on time?

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 22/38

Page 33: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Stochastic Scheduling (N = 4;M = 2)

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 23/38

Page 34: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Stochastic Scheduling (N = 4;M = 2)

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 24/38

Page 35: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Stochastic Scheduling (N = 4;M = 2)

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 25/38

Page 36: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Stochastic Model

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 26/38

Page 37: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Systems Biology

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 27/38

Page 38: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Systems Biology

Enzyme-catalysed substrate conversion

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 28/38

Page 39: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Stochastic Chemical Kinetics

▸ Types of reaction described by stochiometric equations:

E + Sk1

⇌k2

Ck3

→ E + P

▸ N different types of molecules that randomly collidewhere state X(t) = (x1, . . . , xN) with xi =# molecules of sort i

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 29/38

Page 40: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Stochastic Chemical Kinetics

▸ Types of reaction described by stochiometric equations:

E + Sk1

⇌k2

Ck3

→ E + P

▸ N different types of molecules that randomly collidewhere state X(t) = (x1, . . . , xN) with xi =# molecules of sort i

▸ Reaction probability within infinitesimal interval [t, t+∆):αm(x⃗) ⋅∆ = Pr{reaction m in [t, t+∆) ∣ X(t) = x⃗}

where αm(x⃗) = km ⋅ # possible combinations of reactant molecules in x⃗

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 29/38

Page 41: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Stochastic Chemical Kinetics

▸ Types of reaction described by stochiometric equations:

E + Sk1

⇌k2

Ck3

→ E + P

▸ N different types of molecules that randomly collidewhere state X(t) = (x1, . . . , xN) with xi =# molecules of sort i

▸ Reaction probability within infinitesimal interval [t, t+∆):αm(x⃗) ⋅∆ = Pr{reaction m in [t, t+∆) ∣ X(t) = x⃗}

where αm(x⃗) = km ⋅ # possible combinations of reactant molecules in x⃗

▸ Process has the Markov property and is time-homogeneous

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 29/38

Page 42: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

The Relevance of Probabilities

Substrate Conversion in the Small

2400

1310

0220

2301

1211

0121

2202

1112

0022

2103

1013 2004

8

32

11

1000

21000

6

22

11

1000

21000

4

12

11

1000

21000

211

1000

States: init goalenzymes 2 2substrates 4 0complex 0 0products 0 4

Transitions: E + S1⇌1C

0.001→ E +P

e.g., (xE , xS , xC , xP)0.001⋅xC→ (xE + 1, xS , xC − 1, xP + 1) for xC > 0

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 30/38

Page 43: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

Markov Models and Properties

Overview

The Relevance of Probabilities

Markov Models and Properties

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 31/38

Page 44: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

Markov Models and Properties

Common Feature

All these applications consider Markov models1

1Non-exponential distributions are approximated by phase-type distributions.Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 32/38

Page 45: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

Markov Models and Properties

Discrete-Time Markov Models

A Markov chainfor Knuth-Yao’s algorithm A Markov decision process

for the cowboy program

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 33/38

Page 46: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

Markov Models and Properties

Continuous-Time Markov Models

2400

1310

0220

2301

1211

0121

2202

1112

0022

2103

1013 2004

8

32

11

1000

21000

6

22

11

1000

21000

4

12

11

1000

21000

211

1000

A Markov chainfor substrate conversion

t0

t1

t2

λ

µ

p1,3

p2,3

p1,5

p4 p6

p2,5 p2,7

τ

τ

τ

λ

µ1

A Markov decision processfor the GSPN

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 34/38

Page 47: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

Markov Models and Properties

Fault Trees are Continuous-Time MDPs

Markov models of a cold, warm and hot basic event(dormancy factor µ = α⋅λ)

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 35/38

Page 48: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

Markov Models and Properties

Continuous-Time Markov Models

Markov decision process for stochasticscheduling Markov decision processa for a SPARE gate

aIn fact, an interactive Markov chain.

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 36/38

Page 49: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

Markov Models and Properties

Markov Models

Nondeterminism Nondeterminismno yes

Discrete time discrete-time Markov decisionMarkov chain (DTMC) process (MDP)

Continuous time CTMC CTMDP

Other models: e.g., probabilistic variants of (priced) timed automata

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 37/38

Page 50: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

Markov Models and Properties

Properties

Logic Monitors

Discrete time probabilistic deterministic automataCTL (safety and LTL)

Continuous time probabilistic deterministictimed CTL timed automata

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 38/38

Page 51: The What, Why, and How of Probabilistic Verification...Probabilistic Programming Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 2/38 Overview The Relevance

Markov Models and Properties

Properties

Logic Monitors

Discrete time probabilistic deterministic automataCTL (safety and LTL)

Continuous time probabilistic deterministictimed CTL timed automata

Core problem: computing (timed) reachability probabilities

Joost-Pieter Katoen What, Why, and How of Probabilistic Verification 38/38