mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
36 lines
1.6 KiB
Elm
36 lines
1.6 KiB
Elm
![]() |
module Debate.Arguments.Nutrition.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)"
|
||
|
}
|
||
|
]
|
||
|
}
|