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
600bfc267c
commit
627c01538d
10 changed files with 364 additions and 0 deletions
41
frontend/src/Debate/Arguments/Nutrition/SodiumCVD.elm
Normal file
41
frontend/src/Debate/Arguments/Nutrition/SodiumCVD.elm
Normal file
|
@ -0,0 +1,41 @@
|
|||
module Debate.Arguments.Nutrition.SodiumCVD exposing (..)
|
||||
|
||||
import Debate.Types exposing (..)
|
||||
|
||||
argumentSodiumCVD : Argument
|
||||
argumentSodiumCVD =
|
||||
{ argumentTitle = "Argument for Atherogenic Sodium"
|
||||
, propositionTitle = "Higher intakes of sodium increases cardiovascular disease risk."
|
||||
, propositionSummary = "Summary"
|
||||
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~1Q~5Rx)),(Ps),(Q)|=(Rs)"
|
||||
, definitionTable =
|
||||
[ { definiendum = "P(x)"
|
||||
, definiens = "(x) consistently raises blood pressure in controlled studies"
|
||||
}
|
||||
, { definiendum = "Q(x)"
|
||||
, definiens = "elevated blood pressure is known to cause cardiovascular disease"
|
||||
}
|
||||
, { definiendum = "R(x)"
|
||||
, definiens = "higher intakes of substance (x) increases cardiovascular disease risk"
|
||||
}
|
||||
, { definiendum = "s"
|
||||
, definiens = "sodium"
|
||||
}
|
||||
]
|
||||
, argumentFormalization =
|
||||
[ { premises =
|
||||
[ { premise = "For all things, if substance (x) consistently raises blood pressure in controlled studies and elevated blood pressure is known to cause cardiovascular disease, then higher intakes of substance (x) increases cardiovascular disease risk."
|
||||
, notation = "(∀x(Px∧Q→Rx))"
|
||||
}
|
||||
, { premise = "Sodium consistently raises blood pressure in controlled studies."
|
||||
, notation = "(Ps)"
|
||||
}
|
||||
, { premise = "Elevated blood pressure is known to cause cardiovascular disease."
|
||||
, notation = "(Q)"
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, higher intakes of sodium increases cardiovascular disease risk."
|
||||
, conclusionNotation = "(∴Rs)"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue