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

46 lines
1.9 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-18 00:54:11 -06:00
, 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"
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)"
}
]
}