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-18 15:19:43 -06:00
|
|
|
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~4Qx)),(Qm),(Pm~5~6x(Rx))%7C=(Ro)"
|
2024-11-15 23:28:32 -06:00
|
|
|
, definitionTable =
|
2024-11-18 15:19:43 -06:00
|
|
|
[ { definiendum = "P(x)"
|
2024-11-17 01:28:10 -06:00
|
|
|
, definiens = "(x) increases the risk of atherosclerosis"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
2024-11-18 15:19:43 -06:00
|
|
|
, { definiendum = "Q(x)"
|
2024-11-17 01:28:10 -06:00
|
|
|
, definiens = "(x) facilitates the oxidative modification of LDL particles"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
2024-11-18 15:19:43 -06:00
|
|
|
, { definiendum = "R(x)"
|
2024-11-17 01:28:10 -06:00
|
|
|
, 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."
|
2024-11-18 15:19:43 -06:00
|
|
|
, notation = "(∀x(Px↔Qx))"
|
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."
|
2024-11-18 15:19:43 -06:00
|
|
|
, notation = "(Qm)"
|
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."
|
2024-11-18 15:19:43 -06:00
|
|
|
, notation = "(Pm→∀x(Rx))"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
|
|
|
]
|
2024-11-17 01:28:10 -06:00
|
|
|
, conclusion = "Therefore, omega-3s are atherogenic."
|
2024-11-18 15:19:43 -06:00
|
|
|
, conclusionNotation = "(∴Ro)"
|
2024-11-15 23:28:32 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|