website/frontend/src/Config/Pages/Debate/Arguments/Inferences/UnhealthyProcessedMeat.elm

43 lines
2.1 KiB
Elm
Raw Normal View History

2024-12-09 19:53:09 -06:00
module Config.Pages.Debate.Arguments.Inferences.UnhealthyProcessedMeat exposing (..)
2024-11-18 01:17:35 -06:00
2024-12-09 19:53:09 -06:00
import Config.Pages.Debate.Arguments.Types exposing (..)
2024-11-18 01:17:35 -06:00
2024-11-18 14:35:20 -06:00
argumentUnhealthyProcessedMeat : Argument
argumentUnhealthyProcessedMeat =
2024-11-26 04:32:11 -06:00
{ argumentTitle = "Argument for Unhealthy Processed Meat"
2024-11-18 01:17:35 -06:00
, propositionTitle = "Processed meat is overwhelmingly unhealthy."
, propositionReductio = ""
, propositionSummary = "Even when you account for factors that could plausibly influence the results, processed meat has been shown to consistently increase the risk of morbidity and mortality, strongly suggesting that they directly contribute to worse health outcomes, particularly with respect to colorectal cancer and heart disease."
2024-11-18 01:17:35 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qs)|=(Ps)"
2024-11-26 04:32:11 -06:00
, argumentCertainty = 8
2024-11-28 03:51:30 -06:00
, argumentImage = "processedmeat"
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-22 15:10:32 -06:00
, notation = "x(PxQx)"
2024-11-18 01:17:35 -06:00
}
, { premise = "Processed meat consistently associates with an increased risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
2024-11-22 15:10:32 -06:00
, notation = "Qs"
2024-11-18 01:17:35 -06:00
}
]
, conclusion = "Therefore, processed meat is overwhelmingly unhealthy."
2024-11-22 15:10:32 -06:00
, conclusionNotation = "Ps"
2024-11-18 01:17:35 -06:00
}
]
}