2024-12-09 19:53:09 -06:00
|
|
|
module Config.Pages.Debate.Arguments.Inferences.HealthyFibre exposing (..)
|
2024-11-18 00:54:11 -06:00
|
|
|
|
2024-12-09 19:53:09 -06:00
|
|
|
import Config.Pages.Debate.Arguments.Types exposing (..)
|
2024-11-18 00:54:11 -06:00
|
|
|
|
|
|
|
|
|
|
|
argumentHealthyFibre : Argument
|
|
|
|
argumentHealthyFibre =
|
|
|
|
{ argumentTitle = "Argument for Overwhelmingly Healthy Fibre"
|
|
|
|
, propositionTitle = "Fibre, whether whole or refined, is overwhelmingly healthy."
|
2024-11-18 18:55:36 -06:00
|
|
|
, propositionReductio = ""
|
|
|
|
, propositionSummary = "Even when you account for factors that could plausibly influence the results, both refined and whole fibre have been shown to consistently reduce the risk of morbidity and mortality, strongly suggesting that they directly contribute to better health outcomes, particularly with respect to cardiovascular disease."
|
2024-11-18 14:35:20 -06:00
|
|
|
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qb)|=(Pb)"
|
2024-11-22 15:10:32 -06:00
|
|
|
|
2024-11-26 04:32:11 -06:00
|
|
|
, argumentCertainty = 9
|
2024-11-28 03:51:30 -06:00
|
|
|
, argumentImage = "fibre"
|
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"
|
|
|
|
}
|
2024-11-18 21:51:19 -06:00
|
|
|
, { definiendum = "x"
|
|
|
|
, definiens = "a food"
|
|
|
|
}
|
2024-11-18 00:54:11 -06:00
|
|
|
, { definiendum = "b"
|
|
|
|
, definiens = "fibre"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
, argumentFormalization =
|
|
|
|
[ { premises =
|
2024-11-19 01:12:55 -06:00
|
|
|
[ { premise = "For all things, a food is overwhelmingly healthy if, and only if, the food consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
|
2024-11-22 15:10:32 -06:00
|
|
|
, notation = "∀x(Px↔Qx)"
|
2024-11-18 00:54:11 -06:00
|
|
|
}
|
|
|
|
, { 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."
|
2024-11-22 15:10:32 -06:00
|
|
|
, 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."
|
2024-11-22 15:10:32 -06:00
|
|
|
, conclusionNotation = "Pb"
|
2024-11-18 00:54:11 -06:00
|
|
|
}
|
|
|
|
]
|
2024-11-18 14:35:20 -06:00
|
|
|
}
|