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

42 lines
1.8 KiB
Elm
Raw Normal View History

2024-11-18 14:03:55 -06:00
module Debate.Arguments.Nutrition.UnhealthySaturatedFat exposing (..)
import Debate.Types exposing (..)
argumentUnhealthySaturatedFat : Argument
argumentUnhealthySaturatedFat =
{ argumentTitle = "Argument Against Saturated Fat"
, propositionTitle = "Most sources of saturated fat are overwhelmingly unhealthy."
, propositionReductio = ""
2024-11-18 14:03:55 -06:00
, propositionSummary = "Summary"
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qf)|=(Pf)"
2024-11-22 02:19:27 -06:00
, proofText = ""
2024-11-18 14:03:55 -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 = "f"
, definiens = "most sources of saturated fat"
}
]
, 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 14:03:55 -06:00
, notation = "(x(PxQx))"
}
, { premise = "Most sources of saturated fat consistently associates with an increased risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
, notation = "(Qf)"
}
]
, conclusion = "Therefore, most sources of saturated fat are overwhelmingly unhealthy."
, conclusionNotation = "(Pf)"
}
]
}