2024-11-18 14:35:20 -06:00
|
|
|
module Debate.Arguments.Nutrition.UnhealthyProcessedMeat exposing (..)
|
2024-11-18 01:17:35 -06:00
|
|
|
|
|
|
|
import Debate.Types exposing (..)
|
|
|
|
|
|
|
|
|
2024-11-18 14:35:20 -06:00
|
|
|
argumentUnhealthyProcessedMeat : Argument
|
|
|
|
argumentUnhealthyProcessedMeat =
|
2024-11-18 01:17:35 -06:00
|
|
|
{ argumentTitle = "Argument for Overwhelmingly Unhealthy Processed Meat"
|
|
|
|
, propositionTitle = "Processed meat is overwhelmingly unhealthy."
|
2024-11-18 18:55:36 -06:00
|
|
|
, propositionReductio = ""
|
2024-11-18 01:17:35 -06:00
|
|
|
, propositionSummary = "Summary"
|
|
|
|
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qs)|=(Ps)"
|
2024-11-22 02:19:27 -06:00
|
|
|
, proofText = ""
|
2024-11-18 01:17:35 -06:00
|
|
|
, 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 =
|
2024-11-19 01:12:55 -06:00
|
|
|
[ { 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."
|
2024-11-18 01:17:35 -06:00
|
|
|
, 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)"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|