mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
feat: refactored a shit ton of stuff
This commit is contained in:
parent
68be562bd3
commit
fbdfde8680
232 changed files with 2614 additions and 2532 deletions
48
frontend/src/Config/Pages/Debate/Arguments/Inferences/SodiumCVD.elm
Executable file
48
frontend/src/Config/Pages/Debate/Arguments/Inferences/SodiumCVD.elm
Executable file
|
@ -0,0 +1,48 @@
|
|||
module Config.Pages.Debate.Arguments.Inferences.SodiumCVD exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Arguments.Types exposing (..)
|
||||
|
||||
argumentSodiumCVD : Argument
|
||||
argumentSodiumCVD =
|
||||
{ argumentTitle = "Argument for Atherogenic Sodium"
|
||||
, propositionTitle = "Higher intakes of sodium increases cardiovascular disease risk."
|
||||
, propositionReductio = ""
|
||||
, propositionSummary = "In all of the strongest analysis on the relationship between sodium intake and cardiovascular disease risk, there is a linear and proportional relationship. Particularly when the strongest measurement methods are used, such as multiple 24-hour urinary collections."
|
||||
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~1Q~5Rx)),(Ps),(Q)|=(Rs)"
|
||||
|
||||
, argumentCertainty = 9
|
||||
, argumentImage = "sodiumcvd"
|
||||
, 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 = "x"
|
||||
, definiens = "a substance"
|
||||
}
|
||||
, { definiendum = "s"
|
||||
, definiens = "sodium"
|
||||
}
|
||||
]
|
||||
, argumentFormalization =
|
||||
[ { premises =
|
||||
[ { premise = "For all things, if a substance consistently raises blood pressure in controlled studies and elevated blood pressure is known to cause cardiovascular disease, then higher intakes of that substance 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