We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e994112 commit f8c3ff1Copy full SHA for f8c3ff1
examples/probability/distributionScript.sml
@@ -212,14 +212,15 @@ QED
212
213
Overload ext_normal_density = “\mu sig. Normal o normal_density mu sig o real”
214
215
-Definition normal_measure :
+Definition normal_measure_def :
216
normal_measure mu sig s =
217
pos_fn_integral ext_lborel (\x. ext_normal_density mu sig x * indicator_fn s x)
218
End
219
220
-Definition normal_rv :
+Definition normal_rv_def :
221
normal_rv X p mu sig <=> real_random_variable X p /\
222
- distribution p X = normal_measure mu sig
+ !s. s IN subsets Borel ==>
223
+ distribution p X s = normal_measure mu sig s
224
225
226
val _ = export_theory ();
0 commit comments