mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
feat: imported arguments to page
This commit is contained in:
parent
4fdb5f966f
commit
7f630108fa
27 changed files with 124 additions and 172 deletions
|
@ -0,0 +1,36 @@
|
|||
module Debate.Arguments.Science.EpidemiologyCausality exposing (..)
|
||||
|
||||
import Debate.Types exposing (..)
|
||||
|
||||
|
||||
argumentEpidemiologyCausality : Argument
|
||||
argumentEpidemiologyCausality =
|
||||
{ argumentTitle = "Argument for Nutritional Epidemiology"
|
||||
, propositionTitle = "Nutritional epidemiology generally provides good causal estimates."
|
||||
, propositionSummary = "Summary"
|
||||
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~5Qx)),(Pe)|=(Qe)"
|
||||
, definitionTable =
|
||||
[ { definiendum = "P(x)"
|
||||
, definiens = "(x) consistently identifies associations that are later confirmed by randomized controlled trials"
|
||||
}
|
||||
, { definiendum = "Q(x)"
|
||||
, definiens = "(x) generally provides good causal estimates"
|
||||
}
|
||||
, { definiendum = "e"
|
||||
, definiens = "nutritional epidemiology"
|
||||
}
|
||||
]
|
||||
, argumentFormalization =
|
||||
[ { premises =
|
||||
[ { premise = "For all things, if a research method (x) consistently identifies associations that are later confirmed by randomized controlled trials, then research method (x) generally provides good causal estimates."
|
||||
, notation = "(∀x(Px→Qx))"
|
||||
}
|
||||
, { premise = "Nutritional epidemiology consistently identifies associations that are later confirmed by randomized controlled trials."
|
||||
, notation = "(P)e"
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, nutritional epidemiology generally provides good causal estimates."
|
||||
, conclusionNotation = "(∴Qe)"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue