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

46 lines
1.7 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 =
2024-11-17 01:28:10 -06:00
{ argumentTitle = "Atherogenic Omega-3 Reductio"
, propositionTitle = "Omega-3s are atherogenic."
2024-11-15 23:28:32 -06:00
, propositionSummary = "Summary"
2024-11-17 01:28:10 -06:00
, proofLink = "https://www.umsu.de/trees/#(~6x(Ax~4Lx)),(Lm),(Am~5~6x(Fx))%7C=(Fo)"
2024-11-15 23:28:32 -06:00
, definitionTable =
2024-11-17 01:28:10 -06:00
[ { definiendum = "A(x)"
, definiens = "(x) increases the risk of atherosclerosis"
2024-11-15 23:28:32 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "L(x)"
, definiens = "(x) facilitates the oxidative modification of LDL particles"
2024-11-15 23:28:32 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "F(x)"
, definiens = "all (x) are atherogenic"
2024-11-15 23:28:32 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "m"
, definiens = "malondialdehyde"
2024-11-15 23:28:32 -06:00
}
2024-11-17 01:28:10 -06:00
, { definiendum = "o"
, definiens = "omega-3s"
2024-11-15 23:28:32 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-17 01:28:10 -06:00
[ { premise = "Something increases the risk of atherosclerosis if and only if something facilitates the oxidative modification of LDL particles."
, notation = "(x(AxLx))"
2024-11-15 23:28:32 -06:00
}
2024-11-17 01:28:10 -06:00
, { premise = "Malondialdehyde facilitates the oxidative modification of LDL particles."
, notation = "(Lm)"
2024-11-15 23:28:32 -06:00
}
2024-11-17 01:28:10 -06:00
, { premise = "If malondialdehyde increases the risk of atherosclerosis, then all malondialdehyde-producing fatty acids are atherogenic."
, notation = "(Amx(Fx))"
2024-11-15 23:28:32 -06:00
}
]
2024-11-17 01:28:10 -06:00
, conclusion = "Therefore, omega-3s are atherogenic."
, conclusionNotation = "(Fo)"
2024-11-15 23:28:32 -06:00
}
]
}