Author Archives: Robert Rand

A Note on “Disjunctive” Predicates

During my talk yesterday, somebody raised an important point when I discussed the Hoare rule for non-deterministic choice in the recursive semantics and claimed that the postcondition couldn’t be disjunctive: What if it was the negation of a conjunction?

I think I waved this away with a gesture towards the constructive Coq proof assistant, but that was in error (the Coq real number library actually posits the decidability of the reals).

In truth, propositions of the form $latex A \vee B$ $latex \neg (A \wedge B)$, or even $latex Pr(b) \neq p$ are excluded from the post-condition too. The question at hand is to identify the class of propositions $latex P$ such that $latex P(\Theta_1)$ and $latex P(\Theta_2)$ implies $latex P(\Theta_1 \oplus_p \Theta_2)$.

In our expanded VPHL paper, we explicitly limited the propositions we were considering to those of the form $latex Pr(b) \; \Box \; p$, for $latex \Box \in \{$ $latex \textless, \le, =, \ge, \textgreater \}$ (specifically excluding negation and $latex \neq$), and were therefore able to prove the following lemmas (from which the Hoare rule I introduced at PPS followed easily):

Lemma 4.1 For any non-disjunctive assertion $latex P$, $latex P(\Theta_1) \wedge P(\Theta_2)$ implies that $latex P(\Theta_1 \oplus_p \Theta_2)$ for any $latex p \in (0,1)$.

Lemma 4.2 For any non-probabilistic assertion $latex P$, $latex P(\Theta_1 \oplus_p \Theta_2)$ implies $latex P(\Theta_1)$ and $latex P(\Theta_2)$ for any $latex p \in (0,1)$.

But I’d be interested in the broader case: Has any work been done on showing what class of mathematical propositions are closed under the combination of distributions?

Posted in Uncategorized | Comments Off on A Note on “Disjunctive” Predicates

Models for Probabilistic Programs with an Adversary

While working on a Hoare logic for probabilistic programs [1], we encountered an interesting choice for how to define the operational semantics of the underlying probabilistic imperative language PRIMP. We could either define commands as mapping from states to states and then “lift” those commands to apply to distributions, or define those commands over state distributions as a whole. Consider, for example, the conditional if b then c1 else c2. We could either apply this to all the states in the distribution’s support, where b would evaluate to true or false, or we could apply c1 to the entire sub-distribution where b was true and c2 to the complementary sub-distribution. We showed in our Coq development that both approaches were equivalent. Interestingly, when we looked at the non-deterministic choice c1 ⊔ c2 this wasn’t true at all. If we reduced c1 ⊔ c2 to c1 or c2 for the whole distribution, we restricted the non-determinism from reacting to the random events that had already occurred. And this allowed us to verify many properties that wouldn’t hold if we reduced c1 ⊔ c2 at the state level.

We soon realized that the distinction between these evaluation strategies corresponded to the distinction between the Arthur-Merlin (AM) and Interactive Polynomial (IP) complexity classes. AM uses public coins, meaning that the adversary knows the outcome of every random event. By contrast, in IP the hidden coins are used to thwart the prover, as in the simple protocol for verifying that two graphs are non-isomorphic by asking the prover to identify which of the graphs was randomly selected.

It turns out that there are a variety of interesting operational semantics for programs combining probability and non-determinism (we’ve identified eight so far) which are appropriate for domains ranging from security to game theory. All of these can be thought of as encoding what information is available to a non-deterministic adversary. We identified a few of these models in a recent ICFP poster competition.

Five different models of adversary strength.
Five different models of adversary strength.

Which raises two questions: Which models are worth exploring in detail and how many are we missing?

Models for Probabilistic Programs with an Adversary: Extended Abstract, Slides

Robert Rand and Steve Zdancewic, University of Pennsylvania

[1] Rand, R. and S. Zdancewic, “VPHL: A verified partial-correctness logic for probabilistic programs”, Mathematical Foundations of Programming Semantics, 2015.

Posted in Uncategorized | Tagged , , | Comments Off on Models for Probabilistic Programs with an Adversary