mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
feat: added arguments
This commit is contained in:
parent
4e2cdfd70e
commit
4fdb5f966f
11 changed files with 331 additions and 41 deletions
|
@ -0,0 +1,39 @@
|
|||
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."
|
||||
, propositionSummary = "Summary"
|
||||
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qf)|=(Pf)"
|
||||
, 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 =
|
||||
[ { 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(Px↔Qx))"
|
||||
}
|
||||
, { 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)"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue