website/frontend/src/Debate/Arguments/Inferences/ApoBCVD.elm

43 lines
2.1 KiB
Elm
Raw Normal View History

2024-12-08 02:18:36 -06:00
module Debate.Arguments.Inferences.ApoBCVD exposing (..)
2024-11-18 14:03:55 -06:00
2024-12-08 02:18:36 -06:00
import Debate.Arguments.Types exposing (..)
2024-11-18 14:03:55 -06:00
2024-11-22 02:19:27 -06:00
2024-11-18 14:03:55 -06:00
argumentApoBCVD : Argument
argumentApoBCVD =
{ argumentTitle = "Argument for Atherogenic ApoB"
, propositionTitle = "ApoB-containing lipoproteins dose-dependently cause atherosclerosis."
, propositionReductio = ""
, propositionSummary = "ApoB-containing lipoproteins consistently and proportionately associate with increased plaque volume after controlling for relevant confounders, which satisfies the conditions outlined for an exposure to cause atherosclerosis."
2024-11-22 02:19:27 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qw)|=(Pw)"
2024-11-25 18:50:12 -06:00
, argumentCertainty = 9
2024-11-26 04:32:11 -06:00
, argumentImage = "lipoprotein"
2024-11-18 14:03:55 -06:00
, definitionTable =
[ { definiendum = "P(x)"
, definiens = "(x) dose-dependently causes atherosclerosis"
}
, { definiendum = "Q(x)"
, definiens = "(x) consistently, linearly, and proportionately associates with increased plaque volume after adjustment or control over relevant confounders and covariates"
}
, { definiendum = "x"
, definiens = "a substance"
}
, { definiendum = "w"
, definiens = "ApoB-containing lipoproteins"
}
]
, argumentFormalization =
[ { premises =
2024-11-19 01:12:55 -06:00
[ { premise = "For all things, a substance dose-dependently causes atherosclerosis if, and only if, a substance consistently, linearly, and proportionately associates with increased plaque volume after adjustment or control over relevant confounders and covariates."
2024-11-22 15:10:32 -06:00
, notation = "x(PxQx)"
2024-11-18 14:03:55 -06:00
}
, { premise = "ApoB-containing lipoproteins consistently, linearly, and proportionately associates with increased plaque volume after adjustment or control over relevant confounders and covariates."
2024-11-22 15:10:32 -06:00
, notation = "Qw"
2024-11-18 14:03:55 -06:00
}
]
2024-11-18 14:37:03 -06:00
, conclusion = "Therefore, ApoB-containing lipoproteins dose-dependently cause atherosclerosis."
2024-11-22 15:10:32 -06:00
, conclusionNotation = "Pw"
2024-11-18 14:03:55 -06:00
}
]
2024-11-22 02:19:27 -06:00
}