mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 20:35:13 -05:00
feat: uncucked my arguments
This commit is contained in:
parent
73a5a13100
commit
4d59a6997c
53 changed files with 391 additions and 524 deletions
41
frontend/src/Debate/Arguments/UnhealthyRedMeat.elm
Executable file
41
frontend/src/Debate/Arguments/UnhealthyRedMeat.elm
Executable file
|
@ -0,0 +1,41 @@
|
|||
module Debate.Arguments.UnhealthyRedMeat exposing (..)
|
||||
|
||||
import Debate.Types exposing (..)
|
||||
|
||||
|
||||
argumentUnhealthyRedMeat : Argument
|
||||
argumentUnhealthyRedMeat =
|
||||
{ argumentTitle = "Argument for Overwhelmingly Unhealthy Red Meat"
|
||||
, propositionTitle = "Red meat and processed meat are overwhelmingly unhealthy."
|
||||
, propositionReductio = ""
|
||||
, propositionSummary = "Summary"
|
||||
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qm)|=(Pm)"
|
||||
|
||||
, 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"
|
||||
, definiens = "unprocessed red meat"
|
||||
}
|
||||
]
|
||||
, argumentFormalization =
|
||||
[ { premises =
|
||||
[ { 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."
|
||||
, notation = "∀x(Px↔Qx)"
|
||||
}
|
||||
, { premise = "Unprocessed red meat consistently associates with an increased risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
|
||||
, notation = "Qm"
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, unprocessed red meat is overwhelmingly unhealthy."
|
||||
, conclusionNotation = "Pm"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue