feat: imported arguments to page

This commit is contained in:
Nick 2024-11-18 14:35:20 -06:00
parent 4fdb5f966f
commit 7f630108fa
27 changed files with 124 additions and 172 deletions

View file

@ -1,39 +0,0 @@
module Debate.Arguments.Science.ApoBCVD exposing (..)
import Debate.Types exposing (..)
argumentApoBCVD : Argument
argumentApoBCVD =
{ argumentTitle = "Argument for Atherogenic ApoB"
, propositionTitle = "ApoB-containing lipoproteins dose-dependently cause atherosclerosis."
, propositionSummary = "Summary"
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qw)|=(Pw)"
, 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 =
[ { premise = "For all things, substance (x) dose-dependently causes atherosclerosis if, and only if, substance (x) consistently, linearly, and proportionately associates with increased plaque volume after adjustment or control over relevant confounders and covariates."
, notation = "(x(PxQx))"
}
, { premise = "ApoB-containing lipoproteins consistently, linearly, and proportionately associates with increased plaque volume after adjustment or control over relevant confounders and covariates."
, notation = "(Qw)"
}
]
, conclusion = ""
, conclusionNotation = "(Pw)"
}
]
}

View file

@ -0,0 +1,36 @@
module Debate.Arguments.Science.EpidemiologyCausality exposing (..)
import Debate.Types exposing (..)
argumentEpidemiologyCausality : Argument
argumentEpidemiologyCausality =
{ argumentTitle = "Argument for Nutritional Epidemiology"
, propositionTitle = "Nutritional epidemiology generally provides good causal estimates."
, propositionSummary = "Summary"
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~5Qx)),(Pe)|=(Qe)"
, definitionTable =
[ { definiendum = "P(x)"
, definiens = "(x) consistently identifies associations that are later confirmed by randomized controlled trials"
}
, { definiendum = "Q(x)"
, definiens = "(x) generally provides good causal estimates"
}
, { definiendum = "e"
, definiens = "nutritional epidemiology"
}
]
, argumentFormalization =
[ { premises =
[ { premise = "For all things, if a research method (x) consistently identifies associations that are later confirmed by randomized controlled trials, then research method (x) generally provides good causal estimates."
, notation = "(x(PxQx))"
}
, { premise = "Nutritional epidemiology consistently identifies associations that are later confirmed by randomized controlled trials."
, notation = "(P)e"
}
]
, conclusion = "Therefore, nutritional epidemiology generally provides good causal estimates."
, conclusionNotation = "(Qe)"
}
]
}