diff --git a/packages/website/docs/Discussions/Bugs.md b/packages/website/docs/Discussions/Bugs.md
new file mode 100644
index 00000000..7803a552
--- /dev/null
+++ b/packages/website/docs/Discussions/Bugs.md
@@ -0,0 +1,39 @@
+---
+title: "Known Bugs"
+sidebar_position: 6
+---
+
+import { SquiggleEditor } from "../../src/components/SquiggleEditor";
+
+Much of the Squiggle math is imprecise. This can cause significant errors, so watch out.
+
+Below are some specific examples to watch for. We'll work on improving these over time and adding much better warnings and error management.
+
+## Mixtures of distributions with very different means
+
+If you take the pointwise mixture of two distributions with very different means, then the value of that gets fairly warped.
+
+In the following case, the mean of the mixture should be equal to the sum of the means of the parts. These are shown as the first two displayed variables. These variables diverge as the underlying distributions change.
+
+
+
+## Means of Sample Set Distributions
+
+The means of sample set distributions can vary dramatically, especially as the numbers get high.
+
+
+
\ No newline at end of file
diff --git a/packages/website/src/pages/playground.js b/packages/website/src/pages/playground.js
index 4f36e4c3..52bac323 100644
--- a/packages/website/src/pages/playground.js
+++ b/packages/website/src/pages/playground.js
@@ -10,7 +10,7 @@ export default function PlaygroundPage() {
maxWidth: 2000,
}}
>
-
+
);