{
  localUrl: '../page/bayes_rule_probability.html',
  arbitalUrl: 'https://arbital.com/p/bayes_rule_probability',
  rawJsonUrl: '../raw/554.json',
  likeableId: '3045',
  likeableType: 'page',
  myLikeValue: '0',
  likeCount: '7',
  dislikeCount: '0',
  likeScore: '7',
  individualLikes: [
    'EricBruylant',
    'NateSoares',
    'GlennField',
    'PierreThierry',
    'KatherineSavoie2',
    'JuanCLavariega',
    'AdamKing'
  ],
  pageId: 'bayes_rule_probability',
  edit: '11',
  editSummary: '',
  prevEdit: '10',
  currentEdit: '11',
  wasPublished: 'true',
  type: 'wiki',
  title: 'Bayes' rule: Probability form',
  clickbait: 'The original formulation of Bayes' rule.',
  textLength: '9232',
  alias: 'bayes_rule_probability',
  externalUrl: '',
  sortChildrenBy: 'likes',
  hasVote: 'false',
  voteType: '',
  votesAnonymous: 'false',
  editCreatorId: 'NadeemMohsin',
  editCreatedAt: '2017-08-13 06:21:13',
  pageCreatorId: 'NateSoares',
  pageCreatedAt: '2016-07-06 06:30:35',
  seeDomainId: '0',
  editDomainId: 'AlexeiAndreev',
  submitToDomainId: '0',
  isAutosave: 'false',
  isSnapshot: 'false',
  isLiveEdit: 'true',
  isMinorEdit: 'false',
  indirectTeacher: 'false',
  todoCount: '0',
  isEditorComment: 'false',
  isApprovedComment: 'true',
  isResolved: 'false',
  snapshotText: '',
  anchorContext: '',
  anchorText: '',
  anchorOffset: '0',
  mergedInto: '',
  isDeleted: 'false',
  viewCount: '3787',
  text: '[summary:  The formulation of [1lz] you are most likely to see in textbooks says:\n\n$$\\mathbb P(H_i\\mid e) = \\dfrac{\\mathbb P(e\\mid H_i) \\cdot \\mathbb P(H_i)}{\\sum_k \\mathbb P(e\\mid H_k) \\cdot \\mathbb P(H_k)}$$\n\nThis follows from the definition of [-1rj] which states that $\\mathbb P(X \\mid Y) = \\frac{\\mathbb P(X \\wedge Y)}{\\mathbb P (Y)}$, and the [law_marginal_probability law of marginal probability] which says that $\\mathbb P(Y) = \\sum_k \\mathbb P(Y \\wedge X_k)$.\n\nWe can think of the corresponding advice as saying, "Think of how much each hypothesis in $H$ contributed to our expectation of seeing the evidence $e$, including both the [56v likelihood] of seeing $e$ if $H_k$ is true, and the [1rm prior] probability of $H_k$.  The [1rp posterior] of $H_i$ after seeing $e,$ is the amount $H_i$ contributed to our expectation of seeing $e,$ within the total expectation of seeing $e$ contributed by every hypothesis in $H.$]\n\nThe formulation of [1lz] you are most likely to see in textbooks runs as follows:\n\n$$\\mathbb P(H_i\\mid e) = \\dfrac{\\mathbb P(e\\mid H_i) \\cdot \\mathbb P(H_i)}{\\sum_k \\mathbb P(e\\mid H_k) \\cdot \\mathbb P(H_k)}$$\n\nWhere:\n\n- $H_i$ is the hypothesis we're interested in.\n- $e$ is the piece of evidence we observed.\n- $\\sum_k (\\text {expression containing } k)$ [summation_notation means] "Add up, for every $k$, the sum of all the (expressions containing $k$)."\n- $\\mathbf H$ is a set of [1rd mutually exclusive and exhaustive] hypotheses that include $H_i$ as one of the possibilities, and the expression $H_k$ inside the sum ranges over all the possible hypotheses in $\\mathbf H$.\n\nAs a quick example, let's say there's a bathtub full of potentially biased coins.\n\n- Coin type 1 is fair, 50% heads / 50% tails.  40% of the coins in the bathtub are type 1.\n- Coin type 2 produces 70% heads.  35% of the coins are type 2.\n- Coin type 3 produces 20% heads.  25% of the coins are type 3.\n\nWe want to know the [1rp posterior] probability that a randomly drawn coin is of type 2, after flipping the coin once and seeing it produce heads once.\n\nLet $H_1, H_2, H_3$ stand for the hypotheses that the coin is of types 1, 2, and 3 respectively.  Then using [1rj conditional probability notation], we want to know the probability $\\mathbb P(H_2 \\mid heads).$\n\nThe probability form of Bayes' theorem says:\n\n$$\\mathbb P(H_2 \\mid heads) = \\frac{\\mathbb P(heads \\mid H_2) \\cdot \\mathbb P(H_2)}{\\sum_k \\mathbb P(heads \\mid H_k) \\cdot \\mathbb P(H_k)}$$\n\nExpanding the sum:\n\n$$\\mathbb P(H_2 \\mid heads) = \\frac{\\mathbb P(heads \\mid H_2) \\cdot \\mathbb P(H_2)}{[\\mathbb P(heads \\mid H_1) \\cdot \\mathbb P(H_1)] + [\\mathbb P(heads \\mid H_2) \\cdot \\mathbb P(H_2)] + [\\mathbb P(heads \\mid H_3) \\cdot \\mathbb P(H_3)]}$$\n\nComputing the actual quantities:\n\n$$\\mathbb P(H_2 \\mid heads) = \\frac{0.70 \\cdot 0.35 }{[0.50 \\cdot 0.40] + [0.70 \\cdot 0.35] + [0.20 \\cdot 0.25]} = \\frac{0.245}{0.20 + 0.245 + 0.05} = 0.\\overline{49}$$\n\nThis calculation was big and messy.  Which is fine, because the probability form of Bayes' theorem is okay for directly grinding through the numbers, but not so good for doing things in your head.\n\n# Meaning\n\nWe can think of the advice of Bayes' theorem as saying:\n\n"Think of how much each hypothesis in $H$ contributed to our expectation of seeing the evidence $e$, including both the [56v likelihood] of seeing $e$ if $H_k$ is true, and the [1rm prior] probability of $H_k$.  The [1rp posterior] of $H_i$ after seeing $e,$ is the amount $H_i$ contributed to our expectation of seeing $e,$ within the total expectation of seeing $e$ contributed by every hypothesis in $H.$"\n\nOr to say it at somewhat greater length:\n\nImagine each hypothesis $H_1,H_2,H_3\\ldots$ as an expert who has to distribute the probability of their predictions among all possible pieces of evidence.  We can imagine this more concretely by visualizing "probability" as a lump of clay.\n\nThe total amount of clay is one kilogram (probability $1$).  Each expert $H_k$ has been allocated a fraction $\\mathbb P(H_k)$ of that kilogram.  For example, if $\\mathbb P(H_4)=\\frac{1}{5}$ then expert 4 has been allocated 200 grams of clay.\n\nWe're playing a game with the experts to determine which one is the best predictor.\n\nEach time we're about to make an observation $E,$ each expert has to divide up all their clay among the possible outcomes $e_1, e_2, \\ldots.$\n\nAfter we observe that $E = e_j,$ we take away all the clay that wasn't put onto $e_j.$  And then our new belief in all the experts is the relative amount of clay that each expert has left.\n\nSo to know how much we now believe in expert $H_4$ after observing $e_3,$ say, we need to know two things:  First, the amount of clay that $H_4$ put onto $e_3,$ and second, the total amount of clay that all experts (including $H_4$) put onto $e_3.$\n\nIn turn, to know *that,* we need to know how much clay $H_4$ started with, and what fraction of its clay $H_4$ put onto $e_3.$  And similarly, to compute the total clay on $e_3,$ we need to know how much clay each expert $H_k$ started with, and what fraction of their clay $H_k$ put onto $e_3.$\n\nSo Bayes' theorem here would say:\n\n$$\\mathbb P(H_4 \\mid e_3) = \\frac{\\mathbb P(e_3 \\mid H_4) \\cdot \\mathbb P(H_4)}{\\sum_k \\mathbb P(e_3 \\mid H_k) \\cdot \\mathbb P(H_k)}$$\n\nWhat are the incentives of this game of clay?\n\nOn each round, the experts who gain the most are the experts who put the most clay on the observed $e_j,$ so if you know for certain that $e_3$ is about to be observed, your incentive is to put all your clay on $e_3.$\n\nBut putting *literally all* your clay on $e_3$ is risky; if $e_5$ is observed instead, you lose all your clay and are out of the game. Once an expert's amount of clay goes all the way to zero, there's no way for them to recover over any number of future rounds. That hypothesis is done, dead, and removed from the game.  ("Falsification," some people call that.)  If you're not certain that $e_5$ is literally impossible, you'd be wiser to put at least a *little* clay on $e_5$ instead.  That is to say: if your mind puts some probability on $e_5,$ you'd better put some clay there too!\n\n([bayes_score As it happens], if at the end of the game we score each expert by the logarithm of the amount of clay they have left, then each expert is incentivized to place clay exactly proportionally to their honest probability on each successive round.)\n\nIt's an important part of the game that we make the experts put down their clay in advance.  If we let the experts put down their clay afterwards, they might be tempted to cheat by putting down all their clay on whichever $e_j$ had actually been observed.  But since we make the experts put down their clay in advance, they have to *divide up* their clay among the possible outcomes: to give more clay to $e_3,$ that clay has to be taken away from some other outcome, like $e_5.$  To put a very high probability on $e_3$ and gain a lot of relative credibility if $e_3$ is observed, an expert has to stick their neck out and risk losing a lot of credibility if some other outcome like $e_5$ happens instead.  *If* we force the experts to make advance predictions, that is!\n\nWe can also derive from this game that the question "does evidence $e_3$ support hypothesis $H_4$?" depends on how well $H_4$ predicted $e_3$ _compared to the competition._ It's not enough for $H_4$ to predict $e_3$ well if every other hypothesis also predicted $e_3$ well--your amazing new theory of physics gets no points for predicting that the sky is blue.  $H_k$ only goes up in probability when it predicts $e_j$ better than the alternatives.  And that means we have to ask what the alternative hypotheses predicted, even if we think those hypotheses are false.\n\nIf you get in a car accident, and don't want to relinquish the hypothesis that you're a great driver, then you can find all sorts of reasons ("the road was slippery! my car freaked out!") why $\\mathbb P(e \\mid GoodDriver)$ is not too low. But $\\mathbb P(e \\mid BadDriver)$ is also part of the update equation, and the "bad driver" hypothesis *better* predicts the evidence. Thus, your first impulse, when deciding how to update your beliefs in the face of a car accident, should not be "But my preferred hypothesis allows for this evidence!" It should instead be "Points to the 'bad driver' hypothesis for predicting this evidence better than the alternatives!"  (And remember, you're allowed to [update_beliefs_incrementally increase $\\mathbb P(BadDriver)$ a little bit], while still thinking that it's less than 50% probable.)\n\n# Proof\n\nThe proof of Bayes' theorem follows from the definition of [-1rj]:\n\n$$\\mathbb P(X \\mid Y) = \\frac{\\mathbb P(X \\wedge Y)}{\\mathbb P (Y)}$$\n\nAnd from the [law_marginal_probability law of marginal probability]:\n\n$$\\mathbb P(Y) = \\sum_k \\mathbb P(Y \\wedge X_k)$$\n\nTherefore:\n\n$$\n\\mathbb P(H_i \\mid e) = \\frac{\\mathbb P(H_i \\wedge e)}{\\mathbb P (e)}  \\tag{defn. conditional prob.}\n$$\n\n$$\n\\mathbb P(H_i \\mid e) = \\frac{\\mathbb P(e \\wedge H_i)}{\\sum_k \\mathbb P (e \\wedge H_k)} \\tag {law of marginal prob.}\n$$\n\n$$\n\\mathbb P(H_i \\mid e) = \\frac{\\mathbb P(e \\mid H_i) \\cdot \\mathbb P(H_i)}{\\sum_k \\mathbb P (e \\mid H_k) \\cdot \\mathbb P(H_k)} \\tag {defn. conditional prob.}\n$$\n\nQED.\n',
  metaText: '',
  isTextLoaded: 'true',
  isSubscribedToDiscussion: 'false',
  isSubscribedToUser: 'false',
  isSubscribedAsMaintainer: 'false',
  discussionSubscriberCount: '1',
  maintainerCount: '1',
  userSubscriberCount: '0',
  lastVisit: '',
  hasDraft: 'false',
  votes: [],
  voteSummary: [
    '0',
    '0',
    '0',
    '0',
    '0',
    '0',
    '0',
    '0',
    '0',
    '0'
  ],
  muVoteSummary: '0',
  voteScaling: '0',
  currentUserVote: '-2',
  voteCount: '0',
  lockedVoteType: '',
  maxEditEver: '0',
  redLinkCount: '0',
  lockedBy: '',
  lockedUntil: '',
  nextPageId: '',
  prevPageId: '',
  usedAsMastery: 'true',
  proposalEditNum: '0',
  permissions: {
    edit: {
      has: 'false',
      reason: 'You don't have domain permission to edit this page'
    },
    proposeEdit: {
      has: 'true',
      reason: ''
    },
    delete: {
      has: 'false',
      reason: 'You don't have domain permission to delete this page'
    },
    comment: {
      has: 'false',
      reason: 'You can't comment in this domain because you are not a member'
    },
    proposeComment: {
      has: 'true',
      reason: ''
    }
  },
  summaries: {
    Summary: 'The formulation of [1lz] you are most likely to see in textbooks says:\n\n$$\\mathbb P(H_i\\mid e) = \\dfrac{\\mathbb P(e\\mid H_i) \\cdot \\mathbb P(H_i)}{\\sum_k \\mathbb P(e\\mid H_k) \\cdot \\mathbb P(H_k)}$$\n\nThis follows from the definition of [-1rj] which states that $\\mathbb P(X \\mid Y) = \\frac{\\mathbb P(X \\wedge Y)}{\\mathbb P (Y)}$, and the [law_marginal_probability law of marginal probability] which says that $\\mathbb P(Y) = \\sum_k \\mathbb P(Y \\wedge X_k)$.\n\nWe can think of the corresponding advice as saying, "Think of how much each hypothesis in $H$ contributed to our expectation of seeing the evidence $e$, including both the [56v likelihood] of seeing $e$ if $H_k$ is true, and the [1rm prior] probability of $H_k$.  The [1rp posterior] of $H_i$ after seeing $e,$ is the amount $H_i$ contributed to our expectation of seeing $e,$ within the total expectation of seeing $e$ contributed by every hypothesis in $H.$'
  },
  creatorIds: [
    'NateSoares',
    'EliezerYudkowsky',
    'AdomHartell',
    'EricRogstad',
    'NadeemMohsin'
  ],
  childIds: [
    'bayes_odds_to_probability',
    'bayes_rule_probability_proof'
  ],
  parentIds: [
    'bayes_rule'
  ],
  commentIds: [
    '932',
    '986'
  ],
  questionIds: [],
  tagIds: [
    'b_class_meta_tag'
  ],
  relatedIds: [],
  markIds: [],
  explanations: [
    {
      id: '5158',
      parentId: 'bayes_rule_probability',
      childId: 'bayes_rule_probability',
      type: 'subject',
      creatorId: 'NateSoares',
      createdAt: '2016-07-10 22:08:15',
      level: '2',
      isStrong: 'true',
      everPublished: 'true'
    }
  ],
  learnMore: [
    {
      id: '5161',
      parentId: 'bayes_rule_probability',
      childId: 'bayes_odds_to_probability',
      type: 'subject',
      creatorId: 'NateSoares',
      createdAt: '2016-07-10 22:10:19',
      level: '2',
      isStrong: 'false',
      everPublished: 'true'
    },
    {
      id: '5637',
      parentId: 'bayes_rule_probability',
      childId: 'bayes_rule_probability_proof',
      type: 'subject',
      creatorId: 'AlexeiAndreev',
      createdAt: '2016-07-26 16:57:32',
      level: '2',
      isStrong: 'false',
      everPublished: 'true'
    }
  ],
  requirements: [
    {
      id: '4892',
      parentId: 'bayes_rule_odds',
      childId: 'bayes_rule_probability',
      type: 'requirement',
      creatorId: 'NateSoares',
      createdAt: '2016-07-06 06:27:02',
      level: '2',
      isStrong: 'false',
      everPublished: 'true'
    },
    {
      id: '5157',
      parentId: 'conditional_probability',
      childId: 'bayes_rule_probability',
      type: 'requirement',
      creatorId: 'NateSoares',
      createdAt: '2016-07-10 22:08:07',
      level: '2',
      isStrong: 'true',
      everPublished: 'true'
    },
    {
      id: '5766',
      parentId: 'bayes_rule',
      childId: 'bayes_rule_probability',
      type: 'requirement',
      creatorId: 'AlexeiAndreev',
      createdAt: '2016-08-01 23:42:38',
      level: '2',
      isStrong: 'true',
      everPublished: 'true'
    },
    {
      id: '6536',
      parentId: 'bayes_rule_multiple',
      childId: 'bayes_rule_probability',
      type: 'requirement',
      creatorId: 'EliezerYudkowsky',
      createdAt: '2016-10-08 20:24:33',
      level: '2',
      isStrong: 'false',
      everPublished: 'true'
    }
  ],
  subjects: [
    {
      id: '5158',
      parentId: 'bayes_rule_probability',
      childId: 'bayes_rule_probability',
      type: 'subject',
      creatorId: 'NateSoares',
      createdAt: '2016-07-10 22:08:15',
      level: '2',
      isStrong: 'true',
      everPublished: 'true'
    },
    {
      id: '5295',
      parentId: 'bayes_rule',
      childId: 'bayes_rule_probability',
      type: 'subject',
      creatorId: 'AlexeiAndreev',
      createdAt: '2016-07-16 16:07:43',
      level: '3',
      isStrong: 'false',
      everPublished: 'true'
    }
  ],
  lenses: [],
  lensParentId: '',
  pathPages: [],
  learnMoreTaughtMap: {
    '554': [
      '555',
      '56j'
    ]
  },
  learnMoreCoveredMap: {
    '1lz': [
      '1x5',
      '1yd',
      '1zg',
      '1zj'
    ]
  },
  learnMoreRequiredMap: {
    '554': [
      '207',
      '56j'
    ]
  },
  editHistory: {},
  domainSubmissions: {},
  answers: [],
  answerCount: '0',
  commentCount: '0',
  newCommentCount: '0',
  linkedMarkCount: '0',
  changeLogs: [
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '22731',
      pageId: 'bayes_rule_probability',
      userId: 'NadeemMohsin',
      edit: '11',
      type: 'newEdit',
      createdAt: '2017-08-13 06:21:13',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '20099',
      pageId: 'bayes_rule_probability',
      userId: 'EricRogstad',
      edit: '10',
      type: 'newEdit',
      createdAt: '2016-10-11 18:46:51',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: 'Undoing accidental edits'
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '20064',
      pageId: 'bayes_rule_probability',
      userId: 'AdomHartell',
      edit: '9',
      type: 'newEdit',
      createdAt: '2016-10-11 18:15:26',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '20041',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '8',
      type: 'newEdit',
      createdAt: '2016-10-11 05:54:31',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '19964',
      pageId: 'bayes_rule_probability',
      userId: 'AdomHartell',
      edit: '6',
      type: 'newEdit',
      createdAt: '2016-10-08 21:50:33',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: 'The hover summary seems not to be working.  Check the formatting?'
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '19958',
      pageId: 'bayes_rule_probability',
      userId: 'EliezerYudkowsky',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-10-08 20:24:33',
      auxPageId: 'bayes_rule_multiple',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '19957',
      pageId: 'bayes_rule_probability',
      userId: 'EliezerYudkowsky',
      edit: '0',
      type: 'deleteRequirement',
      createdAt: '2016-10-08 20:24:07',
      auxPageId: 'math2',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '19955',
      pageId: 'bayes_rule_probability',
      userId: 'EliezerYudkowsky',
      edit: '5',
      type: 'newEdit',
      createdAt: '2016-10-08 20:23:22',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '19823',
      pageId: 'bayes_rule_probability',
      userId: 'EliezerYudkowsky',
      edit: '4',
      type: 'newEdit',
      createdAt: '2016-10-01 06:09:57',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '18205',
      pageId: 'bayes_rule_probability',
      userId: 'EricBruylant',
      edit: '0',
      type: 'newTag',
      createdAt: '2016-08-03 15:25:23',
      auxPageId: 'b_class_meta_tag',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '18037',
      pageId: 'bayes_rule_probability',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'deleteRequiredBy',
      createdAt: '2016-08-02 00:46:36',
      auxPageId: 'bayes_rule_multiple',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '17958',
      pageId: 'bayes_rule_probability',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-08-01 23:42:39',
      auxPageId: 'bayes_rule',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '17957',
      pageId: 'bayes_rule_probability',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'deleteRequirement',
      createdAt: '2016-08-01 23:40:10',
      auxPageId: 'math1',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '17955',
      pageId: 'bayes_rule_probability',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-08-01 23:40:06',
      auxPageId: 'math2',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '17535',
      pageId: 'bayes_rule_probability',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'newTeacher',
      createdAt: '2016-07-26 16:57:32',
      auxPageId: 'bayes_rule_probability_proof',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16851',
      pageId: 'bayes_rule_probability',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-07-16 16:08:12',
      auxPageId: 'math1',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16850',
      pageId: 'bayes_rule_probability',
      userId: 'AlexeiAndreev',
      edit: '0',
      type: 'newSubject',
      createdAt: '2016-07-16 16:07:43',
      auxPageId: 'bayes_rule',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16506',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '3',
      type: 'newEdit',
      createdAt: '2016-07-10 22:13:57',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16498',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '0',
      type: 'newTeacher',
      createdAt: '2016-07-10 22:10:20',
      auxPageId: 'bayes_odds_to_probability',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16494',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '0',
      type: 'newTeacher',
      createdAt: '2016-07-10 22:08:16',
      auxPageId: 'bayes_rule_probability',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16495',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '0',
      type: 'newSubject',
      createdAt: '2016-07-10 22:08:16',
      auxPageId: 'bayes_rule_probability',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16493',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-07-10 22:08:08',
      auxPageId: 'conditional_probability',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16492',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '0',
      type: 'deleteRequirement',
      createdAt: '2016-07-10 22:08:02',
      auxPageId: 'bayes_probability_notation',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '16226',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '2',
      type: 'newEdit',
      createdAt: '2016-07-08 15:55:26',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15904',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '0',
      type: 'newChild',
      createdAt: '2016-07-07 03:20:42',
      auxPageId: 'bayes_rule_probability_proof',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15594',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '0',
      type: 'newChild',
      createdAt: '2016-07-06 06:34:27',
      auxPageId: 'bayes_odds_to_probability',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15592',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-07-06 06:30:37',
      auxPageId: 'bayes_probability_notation',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15590',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '0',
      type: 'newParent',
      createdAt: '2016-07-06 06:30:36',
      auxPageId: 'bayes_rule',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15591',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '0',
      type: 'newRequirement',
      createdAt: '2016-07-06 06:30:36',
      auxPageId: 'bayes_rule_odds',
      oldSettingsValue: '',
      newSettingsValue: ''
    },
    {
      likeableId: '0',
      likeableType: 'changeLog',
      myLikeValue: '0',
      likeCount: '0',
      dislikeCount: '0',
      likeScore: '0',
      individualLikes: [],
      id: '15588',
      pageId: 'bayes_rule_probability',
      userId: 'NateSoares',
      edit: '1',
      type: 'newEdit',
      createdAt: '2016-07-06 06:30:35',
      auxPageId: '',
      oldSettingsValue: '',
      newSettingsValue: ''
    }
  ],
  feedSubmissions: [],
  searchStrings: {},
  hasChildren: 'true',
  hasParents: 'true',
  redAliases: {},
  improvementTagIds: [],
  nonMetaTagIds: [],
  todos: [],
  slowDownMap: 'null',
  speedUpMap: 'null',
  arcPageIds: 'null',
  contentRequests: {
    moreWords: {
      likeableId: '3952',
      likeableType: 'contentRequest',
      myLikeValue: '0',
      likeCount: '1',
      dislikeCount: '0',
      likeScore: '1',
      individualLikes: [],
      id: '169',
      pageId: 'bayes_rule_probability',
      requestType: 'moreWords',
      createdAt: '2017-01-22 05:42:41'
    }
  }
}