website/frontend/src/Debate/Arguments/Nutrition/UnhealthyRedMeat.elm

41 lines
1.7 KiB
Elm
Raw Normal View History

2024-11-18 01:17:35 -06:00
module Debate.Arguments.Nutrition.UnhealthyRedMeat exposing (..)
import Debate.Types exposing (..)
argumentUnhealthyRedMeat : Argument
argumentUnhealthyRedMeat =
{ argumentTitle = "Argument for Overwhelmingly Unhealthy Red Meat"
, propositionTitle = "Red meat and processed meat are overwhelmingly unhealthy."
, propositionReductio = ""
2024-11-18 01:17:35 -06:00
, propositionSummary = "Summary"
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qm)|=(Pm)"
, 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 = "m"
, definiens = "unprocessed red meat"
}
]
, argumentFormalization =
[ { premises =
[ { premise = "For all things, food (x) is overwhelmingly unhealthy if, and only if, food (x) consistently associates with an increased risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
, notation = "(x(PxQx))"
}
, { premise = "Unprocessed red meat consistently associates with an increased risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
, notation = "(Qm)"
}
]
, conclusion = "Therefore, unprocessed red meat is overwhelmingly unhealthy."
, conclusionNotation = "(Pm)"
}
]
}