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

37 lines
1.6 KiB
Elm
Raw Normal View History

2024-11-18 00:54:11 -06:00
module Debate.Arguments.Nutrition.HealthyFibre exposing (..)
import Debate.Types exposing (..)
argumentHealthyFibre : Argument
argumentHealthyFibre =
{ argumentTitle = "Argument for Overwhelmingly Healthy Fibre"
, propositionTitle = "Fibre, whether whole or refined, is overwhelmingly healthy."
, propositionSummary = "Summary"
2024-11-18 14:35:20 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qb)|=(Pb)"
2024-11-18 00:54:11 -06:00
, definitionTable =
[ { definiendum = "P(x)"
, definiens = "(x) is overwhelmingly healthy"
}
, { definiendum = "Q(x)"
, definiens = "(x) consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates"
}
, { definiendum = "b"
, definiens = "fibre"
}
]
, argumentFormalization =
[ { premises =
[ { premise = "For all things, food (x) is overwhelmingly healthy if, and only if, food (x) consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
, notation = "(x(PxQx))"
}
, { premise = "Fibre, whether whole or refined, consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
, notation = "(Qb)"
2024-11-18 14:35:20 -06:00
}
2024-11-18 00:54:11 -06:00
]
, conclusion = "Therefore, fibre, whether whole or refined, is overwhelmingly healthy."
, conclusionNotation = "(Pb)"
}
]
2024-11-18 14:35:20 -06:00
}