2024-11-22 15:10:32 -06:00
|
|
|
module Debate.Arguments.UnhealthyRedMeat exposing (..)
|
2024-11-18 01:17:35 -06:00
|
|
|
|
|
|
|
import Debate.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
argumentUnhealthyRedMeat : Argument
|
|
|
|
argumentUnhealthyRedMeat =
|
2024-11-26 04:32:11 -06:00
|
|
|
{ argumentTitle = "Argument for Unhealthy Red Meat"
|
2024-11-18 01:17:35 -06:00
|
|
|
, propositionTitle = "Red meat and processed meat are 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)),(Qm)|=(Pm)"
|
2024-11-22 15:10:32 -06:00
|
|
|
|
2024-11-26 04:32:11 -06:00
|
|
|
, argumentCertainty = 7
|
2024-11-28 03:51:30 -06:00
|
|
|
, argumentImage = "redmeat"
|
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 = "m"
|
2024-11-30 04:32:00 -06:00
|
|
|
, definiens = "redmeat"
|
2024-11-18 01:17:35 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
, 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(Px↔Qx)"
|
2024-11-18 01:17:35 -06:00
|
|
|
}
|
|
|
|
, { premise = "Unprocessed red 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 = "Qm"
|
2024-11-18 01:17:35 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
, conclusion = "Therefore, unprocessed red meat is overwhelmingly unhealthy."
|
2024-11-22 15:10:32 -06:00
|
|
|
, conclusionNotation = "Pm"
|
2024-11-18 01:17:35 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|