-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06-deontic.tex
1433 lines (1247 loc) · 72.3 KB
/
06-deontic.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\chapter{Deontic Logic}\label{ch:deontic}
\section{Permission and obligation}
Deontic logic studies formal properties of obligation, permission, prohibition,
and related normative concepts. The box in deontic logic is usually written
`$\Ob$' (for `obligation' or `ought'), the diamond `$\Pe$' (for `permission').
If we read $q$ as stating that you cook dinner, we might use $\Ob q$ to express
that you are obligated to cook dinner.
We assume that obligation and permission are duals. You are not obligated to
cook dinner iff you are permitted to not cook dinner; you are not permitted to
cook dinner iff you are obligated to not cook dinner.
There are many kinds of norms: legal norms, moral norms, prudential norms,
social norms, and so on. There may also be overarching norms that combine some
or all of the others. Deontic logic is applicable to norms of all kinds. We do
not have to settle whether $\Ob$ expresses legal obligation or moral obligation
or some other kind of obligation. It is important, however, that we don't
equivocate. If the law requires $q$ and morality $\neg q$, we should not
formalize this as $\Ob q \land \Ob\! \neg q$. It would be better to use a
multi-modal language with different operators for legal and moral obligation.
% Humberstone 245 discusses the idea of using multi-relational frames in which
% the different relations correspond to different sources of norms or values.
% One may then read OA as true iff /some/ norm says that A is ideal. In this
% semantics, O(A) and O(B) do not entail O(A & B). Compare Lewis on
% compartmentalised beliefs.
Obligations and permissions often vary from agent to agent. If it is your turn
to cook dinner then you are obligated to cook dinner, but I am not. To capture
this agent-relativity, we could add agent subscripts to the operators, as we did
in epistemic logic. We could then express our different obligations as
$\Ob_1 \!q \land \neg \!\Ob_2 \!q$. But what does the sentence letter $q$ stand for?
When I say that you are obligated to cook dinner, the object of the obligation
appears to be a type of act: cooking dinner. In the language of modal
propositional logic, $\Ob$ and $\Pe$ are sentence operators. Unless we want to
say that verb phrases in English (like `cook dinner') should be translated into
sentences of $\L_M$ -- which is possible, but non-standard -- we have to
transform the acts that appear to be the objects of obligation and
permission into propositions.
Consider sentence (1), which is arguably equivalent to (2).
\begin{itemize}[leftmargin=10mm]
\itemsep-1mm
\item[(1)] You ought to cook dinner.
\item[(2)] You ought to see to it that you cook dinner.
\end{itemize}
In (2), the operator `you ought to see to it that' attaches to a sentence, `you
cook dinner'. So we can translate (1) via (2) as $\Ob_1 \!q$, where $q$ translates
`you cook dinner', and $\Ob_1$ corresponds to `you ought to see to it that'.
The subject (you) is mentioned twice in (2). A common assumption in deontic
logic is that we can drop the agent subscripts from deontic operators, since the
embedded proposition will tell us upon whom the obligation or permission falls.
Informally, the idea is that (2) is equivalent to (3), with an impersonal
`ought'.
\begin{itemize}[leftmargin=10mm]
\itemsep1mm
\item[(3)] It ought to be the case that you cook dinner.
\end{itemize}
The impersonal `ought' also figures in statements like (4).
\begin{itemize}[leftmargin=10mm]
\itemsep1mm
\item[(4)] Nobody ought to die of hunger.
\end{itemize}
When I say (4), I don't mean that nobody is obligated to die of hunger. Nor do I
mean that everybody is obligated to not die of hunger. Rather, I mean that a
certain state of affairs -- that nobody dies of hunger -- ought to be the case.
Without further assumptions, this does not impose any obligations on anyone.
% The reducibility of personal to impersonal ought was suggested by Meinong and
% Chisholm, see Handbook of Modal Logic p 1204.
There are reasons to question the equivalence between agent-relative `ought'
statements like (2) and impersonal `ought' statements like (3).
Suppose Amy has promised to play with Betty. Then Amy is obligated to play with
Betty. But Betty is not thereby obligated to play with Amy. Betty may even have
promised not to play with Amy. It is hard to express these facts in terms of
impersonal oughts. If we say that it ought to be the case that Amy plays with
Betty, we're missing the fact that the obligation falls on Amy, not on Betty
(who might be under a contrary obligation). So perhaps it would be better to
keep the agent subscripts after all.
It can also be useful to make the `see to it that' component in statements like
(2) explicit. That Amy ought to play with Betty could then be translated as
$\Ob_a \stit p$, where $\stit$ formalizes `sees to it that'. This allows us to
distinguish between the following three possibilities.
\bigskip
\begin{tabular}{ll}
$\Ob_a \stit \neg p$ & Amy ought to see to it that she doesn't play with Betty.\\
$\Ob_a \neg \stit p$ & Amy ought to not see to it that she plays with Betty.\\
$\neg \Ob_a \stit p$ & It is not the case that Amy ought to see to it that she plays with\\[-0.5mm]
& Betty.
\end{tabular}
\bigskip
% Others have suggested that an adequate deontic logic should include special
% terms for actions in addition to terms for propositions. We could then write
% $\Ob_a \alpha$, where $\alpha$ stands for the (possible) action of Amy playing
% with Betty. This leads to the field of \emph{dynamic deontic logic}. Here,
% action terms are themselves treated as modal operators, associated with their
% own accessibility relation: a world $w'$ is accessible from $w$ through action
% $\alpha$ if performing $\alpha$ in $w$ could bring about $w$. Thus if $p$ is
% the proposition that Betty is happy, one could use $[\alpha]p$ to express that
% Amy's dancing with Betty would definitely lead to Betty being happy, while
% $\langle \alpha \rangle p$ would expresses that the action $\alpha$
% \emph{could} lead to $p$.
% Hilpinen says stit accounts are more sophisticated versions of these.
The $\stit$ operator has proved useful to represent different concepts of rights
and duties. In what follows, we will nonetheless stick to the simplest (and
oldest) approach, without a $\stit$ operator and without agent subscripts. This
approach is sufficient for many applications, but its limitations should be kept
in mind.
% \begin{exercise}
% Let $\mathsf{F}A$ mean that $A$ is forbidden. Can you define
% $\mathsf{F}$ in terms of $\Ob$ or $\Pe$ (or both)?
% \end{exercise}
% \begin{solution}
% For example: $\Ob \neg$, or $\neg \Pe$.
% \end{solution}
\begin{exercise}\label{ex:translate-sdl}
Translate the following sentences into the standard language of deontic logic (without $\stit$ or agent subscripts).
\begin{exlist}
\item You must not go into the garden.
\item You may not go into the garden.
\item Jones ought to help his neighbours.
\item If Jones is going to help his neighbours, then he ought to tell them
he's coming.
\item If Jones isn't going to help his neighbours, then he ought to not tell
them he's coming.
\end{exlist}
\end{exercise}
\begin{solution}
\begin{sollist}
\item $\Ob \neg p$; \quad $p$: You go into the garden.
\item $\Ob \neg p$; \quad $p$: You go into the garden.
\item $\Ob p$; \quad $p$: Jones helps his neighbours.
\item $\Ob (p \to q)$; \quad $p$: Jones helps his
neighbours, $q$: Jones tells his neighbours that he's coming.
\item You might try $\Ob (\neg p \to \neg q)$ or $\neg p \to \Ob \neg q$ \quad $p$: Jones helps his neighbours, $q$: Jones tells his neighbours that he's coming.
\end{sollist}
See section \ref{sec:oblig-circ}, especially exercise \ref{ex:chisholmsparadox},
for why neither translation of (e) is fully satisfactory.
\end{solution}
\section{Standard deontic logic}
Think of a possible world as a history of events. For any such history, and any
system of norms, we can ask whether the history conforms to the norms. Let's
call a world \emph{ideal} (relative to some norms) if everything that happens at
the world conforms to the norms. In an ideal world, everyone does what they
ought to do.
How do the ideal worlds relate to permission and obligation? For a start,
everything that happens at an ideal world is plausibly permitted, for we know
that it conforms to the norms. The converse is plausible as well: whenever
something is permitted then it happens at some ideal world. For suppose
something doesn't happen at any ideal world. Then the event entails the
violation of some norm: it is incompatible with the satisfaction of all norms.
And then it can't be permitted.
We have a simple possible-worlds analysis of permission:
\begin{quote}
$A$ is permitted (relative to some norms) iff $A$ is the case at some
world that is ideal (relative to these norms).
\end{quote}
%
Given the duality of permission and obligation, we also have a possible-worlds
analysis of obligation:
%
\begin{quote}
$A$ is obligatory (relative to some norms) iff $A$ is the case at
all worlds that are ideal (relative to these norms).
\end{quote}
These analyses resemble the simple possible-worlds analysis from chapter
\ref{ch:worlds}, where we assumed that $A$ is possible iff it is the case at
some world, and necessary iff it is the case at all worlds. The difference is
that we now quantify only over ideal worlds.
We can capture this restriction with the help of Kripke models. In Kripke
semantics, $\Diamond A$ is true at a world $w$ iff $A$ is true at some world
that is accessible from $w$. Let's assume that a world is accessible, from any
world, iff it is ideal. Then Kripke semantics implies that $\Diamond A$ is true
at $w$ iff $A$ is true at some ideal world. That's what we want.
The accessibility relation I've just defined is a little unusual: whether it
holds between $w$ and $v$ does not at all depend on $w$. We have
\[
wRv \text{ iff $v$ is ideal.}
\]
But that's OK. The definition of a Kripke model allows for such
degenerate relations.
Let's investigate the formal properties of our degenerate accessibility
relation. Is it, say, reflexive? Transitive? Symmetric? Euclidean?
Transitivity says that if $wRv$ and $vRu$ then $wRu$. Now $wRv$ means that $v$
is ideal. And $vRu$ means that $u$ is ideal. $wRu$ also means that $u$ is ideal.
So transitivity requires that if $v$ is ideal and $u$ is ideal then $u$ is
ideal. That's obviously true. So our accessibility relation is transitive. The
same reasoning shows that it is euclidean. Our possible-worlds analysis
therefore validates the (intuitively somewhat elusive) schemas \pr{4} and
\pr{5}.
%
\begin{principles}
\pri{4}{\Ob A \to \Ob\Ob A}\\
\pri{5}{\Pe A \to \Ob\Pe A}
\end{principles}
What about reflexivity? The hypothesis that every world has access to itself
would mean that every world is ideal. When we reason about permission and
obligation, we normally don't take for granted that everyone does what they
ought to do. We allow for the logical possibility that norms can be violated. So
we don't assume that every world is ideal. Equivalently, we don't regard the
\pr{T}-schema
%
\principle{T}{\Ob A \to A}
%
as valid.
\begin{exercise}
Is the accessibility relation (as defined above) symmetric?
\end{exercise}
\begin{solution}
No, not unless all (or no) worlds are ideal. If $w$ is ideal and $v$ is not,
then $wRv$ but not $vRw$.
\end{solution}
We might, however, impose the weaker condition of seriality. This would
validate the \pr{D}-schema
%
\principle{D}{\Ob A \to \Pe A.}
%
Intuitively, \pr{D} says that the norms are consistent: if you're obligated to
do $A$, then you are not obligated to do not-$A$. (Remember that $\Pe A$ is
equivalent to $\neg\! \Ob\! \neg A$.) Semantically, \pr{D} corresponds to the
assumption that there is at least one world at which all the norms are
satisfied. If there were no such world, all sentences of the form $\Ob A$ would
come out true, and all sentences of the form $\Pe A$ false. Everything would be
obligatory, but nothing allowed. It is hard to make sense of such a scenario. If
we use Kripke semantics for deontic logic, we should therefore rule out
inconsistent norms and accept \pr{D} as valid.
Here it may be important to distinguish \emph{prima facie} obligations from
\emph{actual}, or \emph{all-things-considered} obligations. If you've promised
to cook dinner, you are under a \emph{prima facie} obligation to cook dinner.
But the obligation can be overridden by intervening circumstances or contrary
obligations. If your child has an accident and needs urgent medical care, the
right thing to do may well be to not cook dinner and instead bring your child to
the hospital. In a sense, you are under conflicting obligations: you ought to
cook dinner, and you ought to look after your child (and not cook dinner). There
is no world at which you meet both of these obligations. This is not a
counterexample to \pr{D}, if we understand $\Ob$ as all-things-considered
obligation. You are \emph{prima facie} obligated to cook dinner, but all things
considered, you should not cook dinner.
Another weakening of reflexivity is ``shift reflexivity''. $R$ is \emph{shift
reflexive} if $wRv$ implies $vRv$: every world that can be seen can see
itself. Shift reflexivity corresponds to the following schema \pr{U} (for
``utopia'')
%
\principle{U}{\Ob(\Ob A \to A)}
%
In words: it ought to be the case that whatever ought to be the case is the
case. Shift reflexivity is entailed by euclidity, so our logic validates \pr{U}.
\begin{exercise}\label{ex:shiftref}
Explain why euclidity entails shift reflexivity.
% This is important for applying the euclidity rule for trees.
\end{exercise}
\begin{solution}
$R$ is euclidean if $\forall x \forall y \forall z((xRy \land xRz) \to yRz)$.
Suppose $wRv$. Instantiating the universal formula with $w$ for $x$ and with
$v$ for $y$ and $z$, we have $(wRv \land wRv) \to vRv$. So $vRv$.
\end{solution}
We could look at further properties of the accessibility relation, but we
wouldn't find any plausible candidates that are not entailed by seriality,
transitivity, and euclidity. The complete logic of obligation and permission,
assuming the above possible-worlds analysis, is plausibly KD45.
We might, however, reconsider our analysis. We've assumed that there is a fixed
set of norms that divides the worlds into ``ideal'' ones, where all the norms
are respected, and ``non-ideal'' ones, where some norms are violated. We might
call this an \textbf{absolutist} conception of norms. A \textbf{relativist}
conception, by contrast, would allow that the norms may vary from world to
world.
Suppose, for example, that we want to reason about what is required by the
traffic laws. The traffic laws evidently vary from world to world. Consider a
world at which cyclists are required to wear top hats. Norman is cycling in this
world, without a top hat. Is he violating the traffic laws? He is violating the
laws of \emph{his} world, but not the laws of \emph{our} world. On an absolutist
approach, we interpret $\Ob$ and $\Pe$ as always referring to the laws of our
world, no matter what world is under consideration: $\Ob p$ is true at $w$ iff
$p$ is required by the laws of our world. On a relativist approach, we instead
assume that $\Ob p$ is true at $w$ iff $p$ is required by the laws \emph{at $w$}.
On the relativist approach, a world $v$ is accessible from a world $v$ iff
everything that happens at $v$ conforms to the (relevant) norms at $w$.
Transitivity and euclidity now become implausible. Let $w$ be a world in which
the only relevant norm is that one must drive on the left. Let $v$ be a world in
which everyone drives on the left, but the law allows driving on either side.
Let $u$ be a world in which some people drive on the right. $v$ is accessible
from $w$ and $u$ from $v$, but $u$ is not accessible from $w$. We don't have
transitivity.
\begin{exercise}
Show that the deontic accessibility relation is neither euclidean nor
shift-reflexive, on the relativist approach.
\end{exercise}
\begin{solution}
Let $w$ be a world in which the only relevant norm is that one must drive on
the left. Let $v$ and $u$ be worlds in which everyone drives on the left even
though the law requires driving on the right. Both $v$ and $u$ are accessible
from $w$, but $u$ is not accessible from $v$, and $v$ is not accessible from
itself.
\end{solution}
% A weakening of \Pr{U} is \Pr{4C} or "Density":
% \[
% \Ob\Ob A \to \Ob A.
% \]
% This means that every deontic alternative is a deontic alternative to some
% deontic alternative.
% \begin{exercise}
% The \pr{C4}-schema $\Ob\Ob A \to \Ob A$ is entailed by the \pr{U}-schema
% $\Ob(\Ob A \to A)$ in the sense that whenever an instance of \pr{U} is true at
% a world in a model then so is the corresponding instance of \pr{C4}. What about the other direction? Does the \pr{C4}-schema entail the \pr{U}-schema?
% \begin{exlist}
% \item if all instances of \pr{U} are valid on a frame, then so are all instances of \pr{C4};
% \item it is not the case that if all instances of \pr{C4} are valid on a frame,
% then so are all instances of \pr{U}.
% % Need to give a counterexample frame where C4 is valid but not U.
% % U invalid means not shift reflexive. But still dense. That's
% % hard. Obvious example: W = Reals, R = <. Then wherever we can
% % get in one step we can get in two steps (C4), but we don't have
% % shift reflexivity. Does a tree help?
% \end{exlist}
% \end{exercise}
% \begin{solution}
% \begin{sollist}
% \item I argue by contraposition. Suppose some sentence $\Ob\Ob A \to \Ob A$
% is invalid on a frame. This means that at some world $w$ in some model $M$
% based on the frame, $\Ob\Ob A$ is true while $\Ob A$ is false. It follows
% that there is a world accessible from $w$ at which $A$ is false and $\Ob A$
% true. So $\Ob A \to A$ is false at $v$. So $\Ob (\Ob A \to A)$ is false at
% $w$. (You could also give a tree proof with the K-rules showing that \pr{U}
% entails \pr{C4}.)
% \item It is not enough to give a model in which some instance of \pr{C4} is
% true at some world while the corresponding instance of \pr{U} is false. For
% a counterexample, you need to give a \emph{frame} on which every instance of
% \pr{C4} is valid but not every instance of \pr{U}. Here is one such frame:
% $W = \{w,v\}$, $wRw$, $wRv$, and $vRw$.
% \end{sollist}
% \end{solution}
As before, we probably don't want to assume reflexivity, but we might want to
assume seriality, which now means that there is no world at which the norms make
inconsistent demands.
The relativist conception seems to be more common in deontic logic. So-called
\textbf{standard deontic logic} assumes only that the accessibility relation is
serial, making the system D the complete logic of obligation and permission.
The absolutist logic KD45 and the relativist logic D can be shown to disagree
only about sentences in which a deontic operator occurs in the scope of another
deontic operator. Any sentence that does not contain an $\Ob$ or $\Pe$ operator
embedded under another $\Ob$ or $\Pe$ operator is D-valid iff it is KD45-valid.
% Proof: Clearly everything that's D-valid is KD45-valid, so we need to show
% that if a degree-1 sentence A is KD45-valid, then A is also D-valid. By
% contraposition, suppose A is not D-valid, meaning that there is a world w in a
% serial model M at which A is false. We construct a world w' in a
% serial+euclidean+transitive model M' at which A is false. The worlds of M' are
% w and every world that can be seen from w in M. Every world that can be seen
% from w can see every other such world in M'. The interpretation function in M'
% is like that in M, restricted to the relevant worlds. Trivially, all degree-0
% sentences have the same truth-values at all worlds in M' as they have in M.
% For degree-1 sentences A, we show by induction on complexity that M,w |= A iff
% M',w |= A. Case (1): A is atomic. Trivial. Case (2): A is -B. Trivial by i.h.
% Case (3): A is BvC. Trivial by i.h. Case (4): A is []B. Then B is degree-0. We
% know that B has the same truth-value at any w-accessible world in M and M'. So
% B is true at all w-accessible worlds in M iff it is true at all w-accessible
% worlds in M'. So []B is true at w in M iff []B is true at w in M'. QED.
\begin{exercise}
Use the tree method to check which of the following sentences are D-valid and
which are KD45-valid.
\begin{exlist}
% \item $\Ob p \to \Ob (p \lor q)$
\item $\Pe (p \lor q) \to (\Pe p \land \Pe q)$
% \item $(\Ob p \land \Ob q) \to \Ob(p \land q)$
% \item $\Pe p \to \Pe(p \lor q)$
\item $\Ob\Pe p \to \Pe p$
% \item $\neg (\Ob p \land \Ob \neg p)$
\item $\neg\Pe(p \lor q) \to (\Pe \neg p \lor \Pe\neg q)$
\item $\Ob\Pe p \lor \Pe\Ob p$
\end{exlist}
\end{exercise}
\begin{solution}
Use
\href{https://www.umsu.de/trees/}{https://www.umsu.de/trees/}.
(Write $\Ob$ as a box and $\Pe$ as a diamond. For D, make the accessibility
relation serial; for KD45, make it serial, transitive, and euclidean.)
\end{solution}
\begin{exercise}
Consider a world in which there are no sentient beings, and nothing else that
could introduce norms or laws. Since there are no norms at this world, one
might hold that nothing is obligatory relative to the world's norms, and
nothing is permitted. Explain why this casts doubt on the validity of
\pr{Dual1} and \pr{Dual2} in the logic of relativist obligation and
permission.
\end{exercise}
\begin{solution}
\pr{Dual1} says that $\neg \Diamond A$ is equivalent to $\Box \neg A$. If
nothing is permitted then $\neg \Diamond A$ is true for all $A$. But if
nothing is forbidden then $\Box \neg A$ is false for all $A$.
\pr{Dual2} says that $\neg \Box A$ is equivalent to $\Diamond \neg A$. If
nothing is forbidden then $\neg \Box A$ is true for all $A$. But if
nothing is permitted then $\Diamond \neg A$ is false for all $A$.
% Lewis 1973:98f. suggests a special treatment for "abnormal" worlds with no
% norms to the effect that every world is ideal relative to them.
\end{solution}
\begin{exercise}
A system of norms is \emph{intolerant} if it requires of itself that it is in
force and does not allow any other norms. That is, if the norms at $w$ are
intolerant, then only worlds with the same norms conform to these norms. Show
that the relativist logic of intolerant norms validates \pr{4} and \pr{5}.
\end{exercise}
\begin{solution}
We assume that every world has some norms. (See the previous exercise.)
Suppose a world $v$ is accessible from a world $w$, meaning that $v$ conforms
to the norms of $w$. Since the norms are intolerant, the norms at $v$ must be
the same as at $w$. So whatever is accessible from $v$ is accessible from $w$.
It follows that the accessibility relation is transitive and euclidean. (In
fact, the complete relativist logic of intolerant norms is KD45.)
Note that the absolutist approach validates schemas like $\Ob A \to \Ob\Ob A$
\emph{without} assuming that the norms say anything about whether they should
be in force.
\end{solution}
\section{Norms and circumstances}\label{sec:oblig-circ}
We have assumed that something ought to be the case iff it is the case at all
worlds where no (relevant) norms are violated. On closer inspection, many
ordinary statements about oughts and obligations do not fit this analysis.
Suppose you are walking past a drowning baby. You ought to rescue the baby. But
are you rescuing the baby at every world at which no norms are violated? Clearly
not. There are worlds at which the baby never fell into the pond, and others at
which you are overseas and have no means to rescue the baby. These worlds need
not involve any violations of norms.
The example shows that even on an absolutist approach, obligations and
permissions can vary from world to world. In worlds where you are passing by a
drowning baby, you are obliged to save it. In other worlds, you are not. The
relevant (moral) norms may well be the same in either case. What varies are your
circumstances.
In general, what is required or permitted usually depends not just on the norms,
but also on the circumstances -- for example, on what you are able to do, and
on what consequences the available options would have.
% The point also applies to impersonal oughts. In worlds where an increase of
% greenhouse gases threatens to destabilise the climate, greenhouses gases ought
% to be reduced; in worlds where greenhouse gases never increased, there is no
% imperative for reduction.
We can account for this dependence on the circumstances by changing our
interpretation of the accessibility relation. Previously, we assumed that a
world $v$ is accessible from $w$ iff all the norms (or all the norms at $w$) are
respected at $v$. Let's add another condition: relevant circumstances at $w$
must also obtain at $v$. For example, if $w$ is a world at which you come across
a drowning baby then any accessible world must also be a world at which you come
across a drowning baby. In all ideal worlds \emph{among these}, you rescue the
baby.
Here is the redefined accessibility relation, in terms of which we might try to
analyse $\Ob$ and $\Pe$:
%
\begin{quote}
A world $v$ is deontically accessible from a world $w$ iff (a) $v$ is
circumstantially accessible from $w$, and (b) no norms (at $w$) are violated
at $v$.
\end{quote}
%
The parenthetical '(at $w$)' must be included on a relativist approach, but not
on an absolutist approach.
We might want to say more about the circumstantial accessibility relation in
clause (a). Recall that a world $v$ is circumstantially accessible from $w$ if
relevant circumstances that obtain in $w$ also obtain in $v$. Often, the
``relevant circumstances'' that we seem to hold fixed when we reason about norms
comprise everything that is \emph{settled}, in the sense of section
\ref{sec:systems} -- everything that can no longer be changed. If the baby has
fallen into the pond at $w$, then there is nothing anyone can do to undo the
falling; the falling is a ``relevant circumstance'' that takes place at every
world accessible from $w$. Arguably, however, there are cases in which we treat
worlds as accessible that aren't open. `Jones ought to be here', for example,
can be true even if it's settled that Jones is somewhere else. Perhaps the
circumstantial accessibility relation that figures in clause (a) varies with
conversational context.
% Humberstone 238 mentions that an example due to Aqvist reveals that the
% circumstances that are held fixed can't be defined temporally. This point is
% also made in von Fintel & Heim: "this fence should be white".
% The worlds of deontic logic are plausibly centred (or world-time pairs) since
% the truth-value of Op at w depends on what is still open at w.
% There's also the issue of actualism. We may or may not hold fixed that Prof
% Procrastinate won't write the review. Or suppose you ought to go to work, but
% don't. If you had gone, you'd have walked past a drowning baby, and you'd have
% been obligated to save it. It seems that at all accessible worlds, you rescue
% the baby. But it's odd to say that you should save the baby. Why? Are we
% holding fixed that you're not going to work? Then you're not even obligated to
% go to work. Apparently what we hold fixed depends on the prejacent.
With the new definition of deontic accessibility, $\Ob A$ says that among the
circumstantially accessible worlds, all ideal worlds are $A$-worlds. We could
make this more explicit. Let `$\OK$' be a propositional constant whose intended
meaning is that all norms are satisfied. We can then use $\Box (\OK \to A)$ to
express that $A$ is required, where the box expresses the relevant kind of
circumstantial necessity. This approach to formalizing obligation statements
goes back to Leibniz.
% Kanger uses 'Q' instead of '$\OK$'. Note that the same approach could be used
% in other contexts, e.g. having 'Q' specify that the laws of nature are
% satisfied, or someone's beliefs. See Humberston 257.
\begin{exercise}
How could we define $\Pe$ in terms of $\Box$ and $\OK$, so that $\Pe$ is the
dual of $\Ob$?
\end{exercise}
\begin{solution}
$\Pe A$ could be defined as $\neg\Box(\OK \to \neg A)$, or more simply (and
equivalently) as $\Diamond (\OK \land A)$.
\end{solution}
\begin{exercise}
Show that the Leibnizian approach renders the \pr{U}-schema valid, assuming
that the circumstantial accessibility is reflexive. You have to first
translate the schema into the Leibnizian language.
% \beginwithlist
% \begin{exlist}
% \item Translate the \pr{U}-schema into the Leibnizian language just
% proposed.
% \item Give a tree proof for the translated \pr{U}-schema, using the T-rules
% for the box.
% \end{exlist}
\end{exercise}
\begin{solution}
In the Leibnizian language, the \pr{U}-schema turns into
$\Box(\OK \to (\Box(\OK \to A) \to A))$. You can use a tree proof to show that
this is T-valid. (See \href{https://www.umsu.de/trees/}{umsu.de/trees/}.)
% Humberstone 259 shows that if the box satisfies T and we have <>\OK, then the
% logic is precisely KDU.
\end{solution}
% \begin{exercise}
% Show that if $\Box$ satisfies \pr{4}, then so does $\Ob$.
% \end{exercise}
Whichever language we use to express it, our revised concept of obligation has a
serious problem. It assumes that the circumstantially accessible worlds include
ideal worlds, at which no norms are violated. For suppose there are no such
worlds. Then no world is deontically accessible! We would have to say that
everything is required and nothing permitted (because all instances of $\Ob A$
are true and all instances of $\Pe A$ false at worlds that can't access
anything).
Now remember that we don't assume that all worlds are ideal. If a world is not
ideal, then it is hard to see why the worlds that are circumstantially
accessible from it should always include ideal worlds. Couldn't the ``relevant
circumstances'' that are held fixed include some norm violations?
The problem is brought ought by Arthur Prior's \emph{Samaritan Paradox}. Suppose
someone (Smith) has been injured in a robbery, and Jones has the opportunity to
help. We want to say that Jones ought to help the victim: he helps the victim at
all deontically accessible worlds. But then the robbery must have taken place at
all these worlds. (In a world without a robbery, there is no victim to help.)
Here, the circumstantially accessible worlds all contain a violation of norms.
In a truly ideal world, nobody would have been robbed and nobody would be in
need of help.
We need to adjust our revised definition of deontic accessibility. How could we
do that?
In the Samaritan Paradox, the robbery is settled; it has happened at all worlds
that are compatible with the ``relevant circumstances''. None of these worlds
are ideal. Crucially, however, worlds at which Jones doesn't help the victim are
even \emph{worse}, in terms of norm violations, than worlds at which he helps
the victim. Both kinds of worlds are non-ideal, because the victim got robbed.
But our norms don't just divide the possible worlds into ideal and non-ideal;
they allow for finer distinctions among non-ideal worlds. Jones ought to help
the victim because that's what he does in the \emph{best} worlds among those he
can bring about.
% So we need a "better-than" ordering over the worlds, where a world is "better"
% if the agent comes closer to satisfying her obligations. Naively, this might
% be a matter of counting obligation violations, but we may want to classify two
% shopliftings as better than one murder.
% Lewis 1973:98f. discusses whether, in a relativist approach, one needs to
% account for "abnormal" worlds that induce no betterness order, for example
% because they have no god. If there are no spheres around such a world at all,
% nothing is obligatory and everything is permissible. He suggests that one
% might want W to be the trivial unique sphere, so that tautologies are
% obligatory. /Normality/ means no abnormal worlds. Relatedly, he wonders
% whether each world v is in the order induced by any given world w. (He calls
% this /universality/.) /Absoluteness/ is the idea that betterness is not
% world-relative.
%
% If we interpret the counterfactual in terms of betterness, we get conditional
% obligation; the might counterfactual is conditional permission. [100]
%
% Lewis mentions [102] that several treatments of conditional obligation are
% problematic because they validate inferences from 'if A ought C' to 'if A and
% B ought C' or conversely. He suggests that there are Sobel-type
% counterexamples where 'ought C' alternates with further conjuncts in the
% antecedent: `given that Jesse robbed the bank, he ought to confess, but given
% in addition that his confession would send his mother to an early grave, he
% ought not to; etc.' [Note that like Sobel's sequence, these are hard
% to reverse!]
%
% Lewis also mentions in a footnote [102] the circumstance-relativity of
% ordinary oughts: There is a natural way to construe 'It ought to be that psi'
% so that it does become true when Jesse robs the bank. It can be taken as
% tacitly conditional, meaning something like 'Given those actual circumstances
% that now cannot be helped, it ought to be that psi '. But this tacitly
% conditional and time-dependent construal is not the appropriate one when 'It
% ought to be that psi' is used as a reading for the unconditional obligation
% operator of standard tenseless deontic logic.
These considerations suggest that we should redefine deontic accessibility as
follows, to properly account for the dependence of obligations and permissions
on circumstances.
\begin{quote}
A world $v$ is deontically accessible from a world $w$ iff $v$ is among the
best worlds (by the norms at $w$) among those that are circumstantially
accessible from $w$.
\end{quote}
%
As before, the parenthetical `(by the norms at $w$)' would be needed in a
relativist account and not in an absolutist account.
It can be useful to factor out the circumstantial and deontic components that
enter into the new definition. I don't mean to separate them in the formal
language, as in Leibniz's proposal. Rather, I mean to separate them in the
definition of a model.
Let's define a new type of model. Instead of a deontic accessibility relation,
we have two ingredients besides the worlds $W$ and the interpretation
function $V$. One is a circumstantial accessibility relation. The other is a
world-relative ``order'' that tells us which worlds are better than others,
relative to the norms at any given world (which may be the norms at every world,
on an absolutist approach).
Let `$u \prec_w v$' mean that world $u$ is better than world $v$ relative to the
norms at $w$. The symbol `$\prec$' hints at the idea that $u$ contains
\emph{fewer} violations of norms than $v$. We assume that for any world $w$,
the relation $\prec_w$ is transitive. We also assume that it is asymmetric,
meaning that if $u \prec_w v$ then it is not the case that $v \prec_w u$.
Asymmetric and transitive relations are known as \textbf{strict partial orders}.
\begin{definition}{}{orderingmodel}
A \textbf{deontic ordering model} consists of
\vspace{-3mm}
\begin{itemize*}
\item a non-empty set $W$ (the worlds),
\item a binary relation $R$ on $W$ (the circumstantial accessibility
relation),
\item for each world $w\in W$, a strict partial order $\prec_w$ on $W$ (the
world-relative ranking of worlds as better or worse), and
\item a function $V$ that assigns to each sentence letter of $\L_M$ a subset
of $W$.
\end{itemize*}
\end{definition}
Now we need to say under what conditions a sentence of the form $\Ob A$ is true
at a world in an ordering model. Informally, $\Ob A$ will be true at $w$ iff
$A$ is true at the best worlds among those that are circumstantially accessible.
Let's introduce one more piece of notation. For any set $S$ and any
partial order $\prec$, let $\mathrm{Min}^{\prec}(S)$ be the set of $\prec$-minimal
members of $S$:
\[
\mathrm{Min}^{\prec}(S) =_\text{def} \{ v: v \in S \land \neg\exists u(u \in S \land u \prec v) \}.
\]
An expression of the form `$\{ x: \ldots x \ldots \}$' denotes the set of all
things $x$ that satisfy the condition $\ldots x \ldots$. So $Min^{<}(S)$ is the
set of all things $v$ that are members of $S$ and for which there are no members
$u$ of $S$ for which $u \prec v$.
Here, then, are the truth-conditions for $\Ob A$ and $\Pe A$ in deontic ordering
models:
\begin{definition}{Ordering semantics}{orderingsemantics}
If $M$ is a deontic ordering model and $w$ a world in $M$, then\\[1mm]
$M,w \models \Ob A$ \text{ \;iff\; $M,v \models A$ for all $v \in \mathrm{Min}^{\prec_w}(\{ u: wRu\})$}\\
$M,w \models \Pe A$ \text{ \;iff\; $M,v \models A$ for some $v \in \mathrm{Min}^{\prec_w}(\{ u: wRu\})$}
\end{definition}
\noindent%
This is just a formal way of saying that $\Ob A$ is true at $w$ iff $A$ is true
at the best worlds (by the norms at $w$) among the worlds that are circumstantially accessible at $w$.
If we want the \pr{D}-schema to be valid, we have to assume that there is always
at least one best world among the circumstantially accessible worlds, so that
$\mathrm{Min}^{\prec_w}(\{ u: wRu\})$ is never empty. Let's make this assumption.
The logic of obligation and permission now depends on formal properties of the
circumstantial accessibility relation $R$ and the deontic orderings $\prec_w$.
In section \ref{sec:systems}, I argued that the logic of historical necessity
(of what is settled and open) is S5. This suggests that in normal contexts, $R$
is an equivalence relation. If we adopt an absolutist approach, on which the
orderings $\prec_{w}$ are the same for every world $w$, we then still get KD45.
If we allow the orderings to vary from world to world, we still get D, unless we
impose further restrictions on the orderings.
% Why? If R is an equivalence relation then we can ignore the restriction to
% R-accessible worlds: A is true at w in M iff A is true at w in M*, where W* =
% [w]_R and R* is the universal relation. So []A is true at w iff A is true at
% all the w-best worlds. On the absolutist conception, the w-best worlds are
% best relative to every world. So []A is true at w iff A is true at all worlds
% within some fixed set. This yields KD45. On the relativist conception, the
% w-best worlds may be different from the v-best worlds. Every world has a set
% of best worlds, and the box quantifies over that set. This is just as before.
\begin{exercise}\label{ex:amybettycarla}
Amy ought to promise to help Betty or to help Carla. She doesn't make either
promise. If she had promised to help Betty, she would be obligated to help
Betty. If she had promised to help Carla, she would be obligated to help
Carla. So it ought to be the case that Amy is either obligated to help Betty
or obligated to help Carla. In fact, since Amy makes neither promise, she is
neither obligated to help Betty nor to help Carla. Explain why this casts
doubt on the assumption that deontic accessibility is euclidean.
\end{exercise}
\begin{solution}
In the described situation, it ought to be the case that Amy is either
obligated to help Betty or obligated to help Carla, but Amy is neither
obligated to help Betty nor to help Carla. So if $p$ translates `Amy helps
Betty' and $q$ `Amy helps Carla', we seem to have $\Ob(\Ob p \lor \Ob q)$ and
$\neg \Ob p$ and $\neg \Ob q$. But these assumptions are inconsistent in K5.
You can draw a K5-tree (using the K-rules and the Euclidity rule) starting
with $\Ob(\Ob p \lor \Ob q)$ and $\neg \Ob p$ and $\neg \Ob q$ on which all
branches close. This shows that there is no world in any euclidean model at
which the three assumptions are true.
% This is interesting because the argument doesn't involve any relativism. We
% can assume that the underlying norms are constant. Euclidity fails because
% the argument doesn't hold fixed what is settled. When we say that Amy should
% keep the promise she makes in an Op world, we tacitly assume that the
% promise is fixed: $Oq \land q$ worlds (without $Op$) are no longer open.
\end{solution}
\begin{exercise}
Suppose fatalism is true and the only world that is open (circumstantially
accessible) relative to any world $w$ is $w$ itself. Can you describe the
resulting deontic logic (on either an absolutist or a relativist approach)?
\end{exercise}
\begin{solution}
Since we assume that there is always at least one best world among the
accessible worlds, and the accessible worlds comprise just one world, it
follows that $\Ob A$ is true at $w$ iff $A$ is true at $w$. The logic we get
is the ``Triv'' logic that is axiomatized by adding the \pr{Triv}-schema
$\Box A \leftrightarrow A$ to the standard axioms and rules for K. This logic
is stronger than S5: all S5-valid sentences are Triv-valid. We also have,
among other things, all instances of $\Box A \leftrightarrow \Diamond A$. The
choice between absolutism and relativism makes no difference.
\end{solution}
% \begin{exercise}
% Can you describe a deontic ordering model for the scenario from exercise
% \ref{ex:amybettycarla}?
% \end{exercise}
% \begin{solution}
% One possible answer: Let $w$ be the world in which the story takes place. At
% $w$, Amy doesn't make any promises and isn't helping anyone. Let $v$ be a
% world at which Amy promises to help Betty and keeps her promise. Let $u$ be a
% world at which Amy promises to help Carla and keeps her promise. $v$ and $u$
% are better than $w$, and neither is better than the other. $v$ and $u$ are
% circumstantially accessible from $w$, but not from each other: we can easily
% make promises, but if we've made a promise we can't easily dispose of the
% commitment.
% This is tricky. Strictly, v and u are open only if the promising at these
% worlds takes place in the future. Then u is accessible from v: at a world
% where Amy is about to promise to help Betty she can still promise to help
% Carla. Likewise, v is accessible from u. Both v and u contain zero norm
% violations. So we can't explain why Ob is true at v. Indeed, in some sense
% it isn't true that Amy ought (right now) to be obligated to help either
% Betty or Carla, if it's OK for her to make the promise in the future. (If
% she will make the promise to help Carla, she /will/ be obligated to help
% Carla, but she isn't already under that obligation.)
%
% Does the puzzle arise more clearly if we assume that Amy ought to have made
% the promise yesterday? The problem is that if Amy has promised yesterday to help Betty, and we leave open what promise she made (if any) then it isn't true that at the best worlds she helps Betty: she might instead have promised to help Carla and do that.
% \end{solution}
% \begin{exercise}
% It is safe to assume that the relevant circumstances at $w$ are the
% case at $w$ itself. What does this imply about the ``absolutist''
% logic of obligation and permission on the revised definition of
% deontic accessibility, where we hold fixed the norms of the actual
% world?
% \end{exercise}
Ordering models prove useful when we want to formalize statements with
modal operators and if-clauses, like (1)--(3).
\begin{itemize}[leftmargin=10mm]
\itemsep-1mm
\item[(1)] If you smoke then you must smoke outside.
\item[(2)] If you miss the deadline for tax returns then you must pay a fine.
\item[(3)] If you have promised to call your parents then you must call them.
\end{itemize}
%
How would you translate these into our language $\L_M$? You seem to face a choice
between (W) and (N).
\begin{itemize}[leftmargin=10mm]
\itemsep-1mm
\item[(W)] $\Ob(p \to q)$
\item[(N)] $p \to \Ob q$
\end{itemize}
In (W), the operator $\Ob$ is said to have \textbf{wide scope} because it
applies to the entire conditional $p \to q$. In (N), the operator has
\textbf{narrow scope} because it only applies to the consequent $q$.
On reflection, neither translation is satisfactory. Starting with (N), note that
$p \to \Ob q$ and $\neg \Ob q$ together entail $\neg p$. But from (1), together
with the assumption that you are not required to smoke ($\neg \Ob q$), we surely
can't infer that you do not in fact smoke.
% Also, consider (3*) "If you have promised to call your parents then you must
% kill the Prime Minister". If this is translated as (N) then anyone who is
% unsure about $p$ can't be sure that (3*) is false, for $p \to \Ob k$ is true
% whenever $p$ is false.
%
% Note also that (N) is true whenever $\Ob q$ is true. So the narrow-scope
% approach implies that whenever you ought to do something, then you have a
% conditional obligation to do it under any condition whatsoever. But
% intuitively, the fact that you ought to cook dinner does not imply that if
% your child needs urgent medical care then you ought to cook dinner.
(W) is not much better. For one, in our Kripke-style semantics, $\Ob(p \to q)$
is entailed by $\Ob(\neg p)$. But it is easy to imagine a scenario in which you
must not smoke, or you must submit your tax return before the deadline, but in
which (1) and (2) are false.
% Suppose you should not have promised to call your parents: $\Ob \neg p$. On
% the wide-scope approach, we could infer that if you promised to call your
% parents, then you must kill the Prime Minister.
Both (N) and (W) would also license a problematic form of ``strengthening the
antecedent''. For example, they both suggest that (3) entails (4).
\begin{itemize}[leftmargin=10mm]
\itemsep-1mm
\item[(4)] If you have promised to call your parents and you know that someone
has attached a bomb to your parents' phone that will go off if you call, then
you must call them.
\end{itemize}
\begin{exercise}
Give tree proofs with the K-rules to show that $p \to \Ob r$ entails
$(p \land q) \to \Ob r$, and that $\Ob (p \to r)$ entails
$\Ob((p \land q) \to r)$.
\end{exercise}
\begin{solution}
Use \href{https://www.umsu.de/trees/}{umsu.de/trees/}.
\end{solution}
Let's think about what is expressed by statements like (1)--(4). Intuitively,
when we ask what must be done if $p$ is the case, we are limiting our attention
to situations in which $p$ is the case, and consider which of \emph{these}
situations best conform to the relevant norms. It is irrelevant whether $p$ is
in fact the case or whether it ought to be the case. (1) says -- roughly -- that
among worlds where you smoke, the best worlds are worlds where you smoke
outside. Worlds where you smoke inside are worse than worlds where you smoke
outside. Similarly for (2). A world at which you miss the deadline for tax
returns and pay the fine contains only one violation of the tax rules. Worlds at
which you miss the deadline and don't pay the fine contain two. The best
worlds among those at which you miss the deadline are worlds at which you pay
the fine. Likewise for (3). Among worlds at which you have promised to call your
parents, the best are worlds at which you keep the promise and call them.
The if-clause in sentences like (1)--(3) therefore seems to restrict the worlds
over which the modal operator quantifies. Whereas `ought $q$' alone says that
$q$ is true at the best of the open worlds, `if $p$ then ought $q$' says that
$q$ is true at the best of the open worlds \emph{at which $p$ is true}.
There is no way to express these truth-conditions with the resources of $\L_M$.
But we can introduce a new, binary operator for \textbf{conditional obligation}.
The operator is often written `$\Ob(\cdot/\cdot)$', with a slash separating the
two argument places. Intuitively, $\Ob(B/A)$ means that $B$ ought to be the
case if $A$ is the case.
% The precise semantics of $\Ob(\cdot/\cdot)$ is a matter of debate; I will
% sketch one attractive approach, drawing on ideas from Bengt Hansson and
% Angelika Kratzer.
% Hansson 1981:143 suggests something like Kratzer's account, according to
% Hilpinen 170. In the best worlds among those where -h, we have -t. Express this
% by O(-t/-h). We now assume that for any consistent proposition p there is a
% nonempty set of optimal p-worlds, generalising D.
% Chellas 276 suggests that O(/) can be defined as $A \Rightarrow O(B)$, for a
% Lewis-Stalnaker-selection-type conditional $\Rightarrow$. Others suggest to use
% defeasible conditionals.
% Neighbourhood semantics doesn't help much. In CTD situations, we get conflicting
% obligations. But we want to know more about how the obligations relate.
The formal truth-conditions for $\Ob(B/A)$ are much like those for $\Ob B$, except
that we add the assumption $A$ to the circumstances that are held fixed:
\begin{definition}{Ordering semantics for conditional obligation}{conditionalobligationsemantics}
If $M$ is a deontic ordering model and $w$ a world in $M$, then\\[1mm]
$M,w \models \Ob (B/A) \text{ iff $M,v \models B$ for all
$v \in \mathrm{Min}^{\prec_w}(\{ u: wRu \text{ and } M,u\models A \})$}$.
\end{definition}
%
\noindent%
Here, $\{ u: wRu \text{ and } M,u\models A \}$ is the set of worlds $u$ that are
circumstantially accessible from $w$ and at which $A$ is true.
$\mathrm{Min}^{\prec_{w}}(\{ u: wRu \text{ and } M,u\models A \})$ is the set that
comprises the best of these worlds. So $\Ob(B/A)$ is true at $w$ iff $B$ is true
at all of the best $A$-worlds that are accessible at $w$.
% Hilpinen: Suppose p entails r, and p is true at some of the r-optimal worlds.
% I.e., some of the best r-worlds are (more strongly) p-worlds. Then the best
% p-worlds are the r-optimal worlds where p is true. I.e., optimality is subject
% to the condition:
% If $[[p]] \subseteq [[r]]$ and $[[p]] \cap Opt(r,w)$ is non-empty, then
% $Opt(p,w) = [[p]] \cap Opt(r,w)$.
% It looks like this is entailed by my ordering semantics.
% Syntactically, this means that $\Ob p$ and $\Ob (q/p)$ entail $\Ob(q)$. I.e., we
% have ``deontic detachment''. But we don't have ``factual detachment'': $p$ and
% $\Ob(q/p)$ does not entail $\Ob q$.
\begin{exercise}
``Deontic detachment'' is the inference from $\Ob A $ and $\Ob(B/A)$ to
$\Ob B$. ``Factual detachment'' is the inference from $A$ and $\Ob(B/A)$ to
$\Ob B$. Which of these are valid on the present semantics?
\end{exercise}
\begin{solution}
Deontic detachment is valid. Suppose $A$ is true at the best of the
(circumstantially) accessible worlds, and $B$ is true at the best of the
accessible worlds at which $A$ is true. Then $B$ is true at the best of the
accessible worlds.
Factual detachment is invalid. A counterexample is the ``gentle murder
puzzle''. Suppose John is determined to kill his grandmother. \emph{If he will
go ahead and kill her, he ought to do so gently}. Can we conclude that John
ought to gently kill his grandmother? Arguably not. He shouldn't kill her at
all! We have $k$ and $\Ob(g/k)$, but not $\Ob(g)$. Formally, $g$ is true at
the best of the accessible $k$-worlds, but since all the $k$-worlds are quite
bad, $g$ is not true at the best of the accessible worlds.
\end{solution}
% \begin{exercise}
% Shelly in standing in front of a burning building. Trapped inside
% are two small babies. Shelly could enter the building and rescue
% them, but at the cost of suffering crippling and probably fatal
% burns. Consider the following three possibilities:
% \begin{enumerate*}
% \item[(A)] Shelly stays out and rescues neither baby.
% \item[(B)] Shelly enters the building and rescues only one of the
% babies, although he could easily and without any further costs
% have rescued both.
% \item[(C)] Shelly enters the building and rescues both the babies.
% \end{enumerate*}
% Intuitively, (A) and (C) are permissible but (B) is not.
% \end{exercise}
\begin{exercise}\label{ex:chisholmsparadox}
In exercise \ref{ex:translate-sdl}, you were asked to translate the following