2024-11-18 14:35:20 -06:00
|
|
|
module Debate.Arguments.Science.EpidemiologyCausality exposing (..)
|
2024-11-18 00:54:11 -06:00
|
|
|
|
|
|
|
import Debate.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
argumentEpidemiologyCausality : Argument
|
|
|
|
argumentEpidemiologyCausality =
|
|
|
|
{ argumentTitle = "Argument for Nutritional Epidemiology"
|
|
|
|
, propositionTitle = "Nutritional epidemiology generally provides good causal estimates."
|
2024-11-18 18:55:36 -06:00
|
|
|
, propositionReductio = ""
|
2024-11-18 00:54:11 -06:00
|
|
|
, propositionSummary = "Summary"
|
2024-11-18 21:51:19 -06:00
|
|
|
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~5Qx)),(Pe)|=(Qe)"
|
2024-11-18 00:54:11 -06:00
|
|
|
, 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"
|
|
|
|
}
|
2024-11-18 21:51:19 -06:00
|
|
|
, { definiendum = "x"
|
|
|
|
, definiens = "a research method"
|
|
|
|
}
|
2024-11-18 00:54:11 -06:00
|
|
|
, { definiendum = "e"
|
|
|
|
, definiens = "nutritional epidemiology"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
, argumentFormalization =
|
|
|
|
[ { premises =
|
2024-11-19 01:12:55 -06:00
|
|
|
[ { premise = "For all things, if a research method consistently identifies associations that are later confirmed by randomized controlled trials, then the research method generally provides good causal estimates."
|
2024-11-18 00:54:11 -06:00
|
|
|
, 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)"
|
|
|
|
}
|
|
|
|
]
|
2024-11-18 21:51:19 -06:00
|
|
|
}
|