mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-17 04:45:12 -05:00
feat: changed argument formatting
This commit is contained in:
parent
9a8594d560
commit
73a5a13100
55 changed files with 223 additions and 30 deletions
|
@ -2,13 +2,36 @@ module Debate.Arguments.Medicine.ApoBCVD exposing (..)
|
|||
|
||||
import Debate.Types exposing (..)
|
||||
|
||||
|
||||
argumentApoBCVD : Argument
|
||||
argumentApoBCVD =
|
||||
let
|
||||
argumentNotation : ArgumentStructure
|
||||
argumentNotation =
|
||||
{ notationP1 = "∀x(Px↔Qx)"
|
||||
, notationP2 = "Qw"
|
||||
, notationP3 = ""
|
||||
, notationP4 = ""
|
||||
, notationP5 = ""
|
||||
, notationP6 = ""
|
||||
, notationP7 = ""
|
||||
, notationP8 = ""
|
||||
, notationP9 = ""
|
||||
, notationP10 = ""
|
||||
, notationC = "Pw"
|
||||
}
|
||||
in
|
||||
{ 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."
|
||||
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qw)|=(Pw)"
|
||||
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qw)|=(Pw)"
|
||||
, proofText =
|
||||
argumentNotation.notationP1
|
||||
++ ", "
|
||||
++ argumentNotation.notationP2
|
||||
++ ", ∴ "
|
||||
++ argumentNotation.notationC
|
||||
, definitionTable =
|
||||
[ { definiendum = "P(x)"
|
||||
, definiens = "(x) dose-dependently causes atherosclerosis"
|
||||
|
@ -26,14 +49,14 @@ argumentApoBCVD =
|
|||
, argumentFormalization =
|
||||
[ { premises =
|
||||
[ { 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."
|
||||
, notation = "(∀x(Px↔Qx))"
|
||||
, notation = argumentNotation.notationP1
|
||||
}
|
||||
, { premise = "ApoB-containing lipoproteins consistently, linearly, and proportionately associates with increased plaque volume after adjustment or control over relevant confounders and covariates."
|
||||
, notation = "(Qw)"
|
||||
, notation = argumentNotation.notationP2
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, ApoB-containing lipoproteins dose-dependently cause atherosclerosis."
|
||||
, conclusionNotation = "(∴Pw)"
|
||||
, conclusionNotation = argumentNotation.notationC
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue