website/frontend/src/Debate/Arguments/Nutrition/SodiumCVD.elm

47 lines
2.2 KiB
Elm
Raw Normal View History

2024-11-18 00:54:11 -06:00
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."
, propositionReductio = ""
2024-11-20 21:34:52 -06:00
, 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."
2024-11-18 00:54:11 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~1Q~5Rx)),(Ps),(Q)|=(Rs)"
2024-11-22 02:19:27 -06:00
, proofText = ""
2024-11-18 00:54:11 -06:00
, 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"
2024-11-18 21:51:19 -06:00
}
, { definiendum = "x"
, definiens = "a substance"
2024-11-18 00:54:11 -06:00
}
, { definiendum = "s"
, definiens = "sodium"
}
]
, argumentFormalization =
[ { premises =
2024-11-19 01:12:55 -06:00
[ { 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."
2024-11-18 00:54:11 -06:00
, notation = "(x(PxQRx))"
}
, { 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)"
}
]
}