mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-17 04:45:12 -05:00
feat: added arguments
This commit is contained in:
parent
627c01538d
commit
4e2cdfd70e
5 changed files with 188 additions and 0 deletions
|
@ -0,0 +1,39 @@
|
|||
module Debate.Arguments.Nutrition.UnhealthProcessedMeat exposing (..)
|
||||
|
||||
import Debate.Types exposing (..)
|
||||
|
||||
|
||||
argumentUnhealthProcessedMeat : Argument
|
||||
argumentUnhealthProcessedMeat =
|
||||
{ argumentTitle = "Argument for Overwhelmingly Unhealthy Processed Meat"
|
||||
, propositionTitle = "Processed meat is overwhelmingly unhealthy."
|
||||
, propositionSummary = "Summary"
|
||||
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qs)|=(Ps)"
|
||||
, 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 =
|
||||
[ { 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 = "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)"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue