website/frontend/src/Debate/Arguments/AnabolicKeto.elm

44 lines
2.3 KiB
Elm
Raw Normal View History

2024-11-22 15:10:32 -06:00
module Debate.Arguments.AnabolicKeto exposing (..)
2024-11-16 15:50:33 -06:00
import Debate.Types exposing (..)
argumentAnabolicKeto : Argument
argumentAnabolicKeto =
2024-11-16 22:44:25 -06:00
{ argumentTitle = "Anabolic Opportunity Cost on Keto"
, propositionTitle = "Ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets."
, propositionReductio = ""
, propositionSummary = "A higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets, reducing the amount available for hypertrophy. This likely costs anabolic potential on ketogenic diets compared to non-ketogenic diets."
2024-11-16 22:44:25 -06:00
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(P),(Q~5R)|=(R)"
2024-11-22 15:10:32 -06:00
2024-11-26 04:32:11 -06:00
, argumentCertainty = 5
, argumentImage = ""
2024-11-16 15:50:33 -06:00
, definitionTable =
2024-11-16 22:44:25 -06:00
[ { definiendum = "P"
, definiens = "a higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets"
2024-11-16 15:50:33 -06:00
}
2024-11-16 22:44:25 -06:00
, { definiendum = "Q"
, definiens = "a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets"
2024-11-16 15:50:33 -06:00
}
2024-11-16 22:44:25 -06:00
, { definiendum = "R"
, definiens = "ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets"
2024-11-16 15:50:33 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-16 22:44:25 -06:00
[ { premise = "If a higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets, then a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets."
2024-11-22 15:10:32 -06:00
, notation = "PQ"
2024-11-16 15:50:33 -06:00
}
2024-11-16 22:44:25 -06:00
, { premise = "If a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets, then ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets."
2024-11-22 15:10:32 -06:00
, notation = "QR"
2024-11-16 15:50:33 -06:00
}
2024-11-19 13:17:57 -06:00
, { premise = "A higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets."
2024-11-22 15:10:32 -06:00
, notation = "P"
2024-11-19 13:17:57 -06:00
}
2024-11-16 15:50:33 -06:00
]
2024-11-16 22:44:25 -06:00
, conclusion = "Therefore, ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets."
2024-11-22 15:10:32 -06:00
, conclusionNotation = "R"
2024-11-16 15:50:33 -06:00
}
]
}