diff --git a/Example17_SharedEvents_ProbabilityCalculationsType1.mp b/Example17_SharedEvents_ProbabilityCalculationsType1.mp
new file mode 100644
index 0000000000000000000000000000000000000000..c08f59d00876241b87d0f5dc6b4bc2a2c9af8d67
--- /dev/null
+++ b/Example17_SharedEvents_ProbabilityCalculationsType1.mp
@@ -0,0 +1,13 @@
+/* Example17_SharedEvents_ProbabilityCalculationsType1.mp
+
+	A simple example of shared events. If one root has a, the other root
+also has a. If neither root has a, then root 1 must have b, and root 2
+must have c. Additionally, probabilities show how "SHARE ALL" increases
+the chances of the shared event.
+
+*/
+SCHEMA Shared_Events
+
+ROOT R1: (<<0.6>> a | b);
+ROOT R2: (<<0.8>> a | c);
+R1, R2 SHARE ALL a;
\ No newline at end of file