sketerpot comments on Hearsay, Double Hearsay, and Bayesian Updates - Less Wrong

47 Post author: Mass_Driver 16 February 2012 10:31PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (105)

You are viewing a single comment's thread.

Comment author: sketerpot 17 February 2012 12:00:36AM 1 point [-]

Use A <-> (A ^ B ^ C) are reliable.

This threw me a little. Those ^ characters look a lot like the logical conjunction ("and") operator ∧, but they also look like the exclusive-or operator in C-like programming languages. For clarity, maybe spell this out in plain English: "Use A if and only if A and B and C are reliable."

</nitpick>

Comment author: kpreid 17 February 2012 01:26:06AM 5 points [-]

Or actually use the proper symbols. ASCII is not a requirement for compatibility in these days.

A ↔ (A ∧ B ∧ C)

Comment author: Mass_Driver 17 February 2012 01:53:21AM 0 points [-]

Thanks; fixed.

Comment author: TobyBartels 03 March 2012 08:54:46AM *  0 points [-]

I can also nitpick that the parentheses are in the wrong place. It's not that the conjunction of A, B, and C must be reliable, but that each of them individually must be reliable (as is indicated in English by the use of ‘are’ instead of ‘is’). So first you should make it all symbols by introducing modal operators for the usage of a fact and for the reliability of a fact, then group properly to get U[A] ↔ (R[A] ∧ R[B] ∧ R[C]), not U[A] ↔ R[A ∧ B ∧ C].