website/frontend/src/Debate/Arguments/Nutrition/Malondialdehyde.elm

54 lines
1.5 KiB
Elm
Raw Normal View History

2024-11-15 23:28:32 -06:00
module Debate.Arguments.Nutrition.Malondialdehyde exposing (..)
import Debate.Types exposing (..)
argumentMalondialdehyde : Argument
argumentMalondialdehyde =
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
, propositionSummary = "Summary"
, definitionTable =
[ { definiendum = "C(x)"
, definiens = "prop 1"
}
, { definiendum = "B(x)"
, definiens = "prop 2"
}
, { definiendum = "D(x)"
, definiens = "prop 3"
}
, { definiendum = "S(x)"
, definiens = "prop 4"
}
, { definiendum = "A(x)"
, definiens = "prop 5"
}
, { definiendum = "r"
, definiens = "variable 1"
}
]
, argumentFormalization =
[ { premises =
[ { premise = "premise 1"
, notation = "(x(CxBx))"
}
, { premise = "premise 2"
, notation = "(x(¬CxDx))"
}
, { premise = "premise 3"
, notation = "(¬Cr)"
}
, { premise = "premise 4"
, notation = "(¬BrDrSr)"
}
, { premise = "premise 5"
, notation = "(SrAr)"
}
]
, conclusion = "conclusion"
, conclusionNotation = "(Ar)"
}
]
}