2024-11-22 15:10:32 -06:00
|
|
|
module Debate.Arguments.ApoBCVD exposing (..)
|
2024-11-18 14:03:55 -06:00
|
|
|
|
|
|
|
import Debate.Types exposing (..)
|
|
|
|
|
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."
|
2024-11-18 18:55:36 -06:00
|
|
|
, 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-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(Px↔Qx)"
|
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
|
|
|
}
|