mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
41 lines
1.7 KiB
Elm
Executable file
41 lines
1.7 KiB
Elm
Executable file
module Debate.Arguments.UnhealthyProcessedMeat exposing (..)
|
|
|
|
import Debate.Types exposing (..)
|
|
|
|
|
|
argumentUnhealthyProcessedMeat : Argument
|
|
argumentUnhealthyProcessedMeat =
|
|
{ argumentTitle = "Argument for Overwhelmingly Unhealthy Processed Meat"
|
|
, propositionTitle = "Processed meat is overwhelmingly unhealthy."
|
|
, propositionReductio = ""
|
|
, propositionSummary = "Summary"
|
|
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qs)|=(Ps)"
|
|
|
|
, definitionTable =
|
|
[ { definiendum = "P(x)"
|
|
, definiens = "(x) is overwhelmingly unhealthy"
|
|
}
|
|
, { definiendum = "Q(x)"
|
|
, definiens = "(x) consistently associates with an increased risk of morbidity and mortality after adjustment or control over relevant confounders and covariates"
|
|
}
|
|
, { definiendum = "x"
|
|
, definiens = "a food"
|
|
}
|
|
, { definiendum = "s"
|
|
, definiens = "processed meat"
|
|
}
|
|
]
|
|
, argumentFormalization =
|
|
[ { premises =
|
|
[ { premise = "For all things, a food is overwhelmingly unhealthy if, and only if, the food consistently associates with an increased risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
|
|
, notation = "∀x(Px↔Qx)"
|
|
}
|
|
, { premise = "Processed meat consistently associates with an increased risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
|
|
, notation = "Qs"
|
|
}
|
|
]
|
|
, conclusion = "Therefore, processed meat is overwhelmingly unhealthy."
|
|
, conclusionNotation = "Ps"
|
|
}
|
|
]
|
|
}
|