website/frontend/src/Debate/Arguments/Omega3Omega6Ratio.elm

35 lines
1.8 KiB
Elm
Raw Normal View History

2024-11-22 15:10:32 -06:00
module Debate.Arguments.Omega3Omega6Ratio exposing (..)
2024-11-18 14:03:55 -06:00
import Debate.Types exposing (..)
argumentOmega3Omega6Ratio : Argument
argumentOmega3Omega6Ratio =
{ argumentTitle = "Argument Against the Omega-6/Omega-3 Ratio"
, propositionTitle = "The omega-6/omega-3 ratio is unlikely to matter for health."
, propositionReductio = ""
2024-11-20 21:34:52 -06:00
, propositionSummary = "More often than not, the associated risks of a high omega-6/omega-3 ratio are better explained by omega-3 alone. In multivariable analyses, the ratio looks like it matters, but in univariable anaylses, low omega-3 is almost always driving the risk via lowering the denominator."
2024-11-18 14:03:55 -06:00
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(~3Q)|=(~3P)"
2024-11-22 15:10:32 -06:00
2024-11-25 18:50:12 -06:00
, argumentCertainty = 1
2024-11-18 14:03:55 -06:00
, definitionTable =
[ { definiendum = "P"
, definiens = "increases or decreases in disease risk associated with a high or low omega-6/omega-3 ratio are better explained by changes in omega-3 alone"
}
, { definiendum = "Q"
, definiens = "the omega-6/omega-3 ratio is likely to matter for health"
}
]
, argumentFormalization =
[ { premises =
[ { premise = "If increases or decreases in disease risk associated with a high or low omega-6/omega-3 ratio are better explained by changes in omega-3 alone, then the omega-6/omega-3 ratio is not likely to matter for health."
2024-11-22 15:10:32 -06:00
, notation = "P¬Q"
2024-11-18 14:03:55 -06:00
}
, { premise = "Increases or decreases in disease risk associated with a high or low omega-6/omega-3 ratio are better explained by changes in omega-3 alone."
2024-11-22 15:10:32 -06:00
, notation = "P"
2024-11-18 14:03:55 -06:00
}
]
, conclusion = "Therefore, the omega-6/omega-3 ratio is not likely to matter for health."
2024-11-22 15:10:32 -06:00
, conclusionNotation = "¬Q"
2024-11-18 14:03:55 -06:00
}
]
}