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
627c01538d
commit
4e2cdfd70e
5 changed files with 188 additions and 0 deletions
39
frontend/src/Debate/Arguments/Nutrition/HealthySeedOils.elm
Normal file
39
frontend/src/Debate/Arguments/Nutrition/HealthySeedOils.elm
Normal file
|
@ -0,0 +1,39 @@
|
|||
module Debate.Arguments.Nutrition.HealthySeedOils exposing (..)
|
||||
|
||||
import Debate.Types exposing (..)
|
||||
|
||||
|
||||
argumentHealthySeedOils : Argument
|
||||
argumentHealthySeedOils =
|
||||
{ argumentTitle = "Argument for Overwhelmingly Healthy Seed Oils"
|
||||
, propositionTitle = "Non-hydrogenated vegetable oils are overwhelmingly healthy."
|
||||
, propositionSummary = "Summary"
|
||||
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~5Qx)),(Pv)|=(Qv)"
|
||||
, definitionTable =
|
||||
[ { definiendum = "P(x)"
|
||||
, definiens = "(x) is overwhelmingly healthy"
|
||||
}
|
||||
, { definiendum = "Q(x)"
|
||||
, definiens = "(x) consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates"
|
||||
}
|
||||
, { definiendum = "x"
|
||||
, definiens = "a food"
|
||||
}
|
||||
, { definiendum = "v"
|
||||
, definiens = "non-hydrogenated vegetable oils"
|
||||
}
|
||||
]
|
||||
, argumentFormalization =
|
||||
[ { premises =
|
||||
[ { premise = "For all things, food (x) is overwhelmingly healthy if, and only if, food (x) consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
|
||||
, notation = "(∀x(Px↔Qx))"
|
||||
}
|
||||
, { premise = "Non-hydrogenated vegetable oils consistently associate with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
|
||||
, notation = "(Pv)"
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, non-hydrogenated vegetable oils are overwhelmingly healthy."
|
||||
, conclusionNotation = "(∴Qv)"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue