2024-11-18 14:35:20 -06:00
|
|
|
module Debate.Arguments.Medicine.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 =
|
2024-11-22 02:19:27 -06:00
|
|
|
let
|
|
|
|
argumentNotation : ArgumentStructure
|
|
|
|
argumentNotation =
|
|
|
|
{ notationP1 = "∀x(Px↔Qx)"
|
|
|
|
, notationP2 = "Qw"
|
|
|
|
, notationP3 = ""
|
|
|
|
, notationP4 = ""
|
|
|
|
, notationP5 = ""
|
|
|
|
, notationP6 = ""
|
|
|
|
, notationP7 = ""
|
|
|
|
, notationP8 = ""
|
|
|
|
, notationP9 = ""
|
|
|
|
, notationP10 = ""
|
|
|
|
, notationC = "Pw"
|
|
|
|
}
|
|
|
|
in
|
2024-11-18 14:03:55 -06:00
|
|
|
{ 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)"
|
|
|
|
, proofText =
|
|
|
|
argumentNotation.notationP1
|
|
|
|
++ ", "
|
|
|
|
++ argumentNotation.notationP2
|
|
|
|
++ ", ∴ "
|
|
|
|
++ argumentNotation.notationC
|
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 02:19:27 -06:00
|
|
|
, notation = argumentNotation.notationP1
|
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 02:19:27 -06:00
|
|
|
, notation = argumentNotation.notationP2
|
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 02:19:27 -06:00
|
|
|
, conclusionNotation = argumentNotation.notationC
|
2024-11-18 14:03:55 -06:00
|
|
|
}
|
|
|
|
]
|
2024-11-22 02:19:27 -06:00
|
|
|
}
|