feat: added some arguments

This commit is contained in:
Nick 2024-11-17 01:28:10 -06:00
parent 1aa6599e57
commit aa7357d871
35 changed files with 187 additions and 208 deletions

View file

@ -5,50 +5,41 @@ import Debate.Types exposing (..)
argumentMalondialdehyde : Argument
argumentMalondialdehyde =
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
{ argumentTitle = "Atherogenic Omega-3 Reductio"
, propositionTitle = "Omega-3s are atherogenic."
, propositionSummary = "Summary"
, proofLink = ""
, proofLink = "https://www.umsu.de/trees/#(~6x(Ax~4Lx)),(Lm),(Am~5~6x(Fx))%7C=(Fo)"
, definitionTable =
[ { definiendum = ""
, definiens = ""
[ { definiendum = "A(x)"
, definiens = "(x) increases the risk of atherosclerosis"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "L(x)"
, definiens = "(x) facilitates the oxidative modification of LDL particles"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "F(x)"
, definiens = "all (x) are atherogenic"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "m"
, definiens = "malondialdehyde"
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
, { definiendum = "o"
, definiens = "omega-3s"
}
]
, argumentFormalization =
[ { premises =
[ { premise = ""
, notation = ""
[ { premise = "Something increases the risk of atherosclerosis if and only if something facilitates the oxidative modification of LDL particles."
, notation = "(x(AxLx))"
}
, { premise = ""
, notation = ""
, { premise = "Malondialdehyde facilitates the oxidative modification of LDL particles."
, notation = "(Lm)"
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
, { premise = "If malondialdehyde increases the risk of atherosclerosis, then all malondialdehyde-producing fatty acids are atherogenic."
, notation = "(Amx(Fx))"
}
]
, conclusion = ""
, conclusionNotation = "()"
, conclusion = "Therefore, omega-3s are atherogenic."
, conclusionNotation = "(Fo)"
}
]
}