feat: updated arguments

This commit is contained in:
Nick 2024-11-16 22:44:25 -06:00
parent 600f2ed3f4
commit 9841567483
10 changed files with 101 additions and 233 deletions

View file

@ -5,50 +5,35 @@ import Debate.Types exposing (..)
argumentAnabolicKeto : Argument
argumentAnabolicKeto =
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
{ argumentTitle = "Anabolic Opportunity Cost on Keto"
, propositionTitle = "Ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets."
, propositionSummary = "Summary"
, proofLink = ""
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(P),(Q~5R)|=(R)"
, definitionTable =
[ { definiendum = ""
, definiens = ""
[ { definiendum = "P"
, definiens = "a higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets"
}
, { definiendum = ""
, definiens = ""
, { definiendum = "Q"
, definiens = "a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets"
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
, { definiendum = "R"
, definiens = "ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets"
}
]
, argumentFormalization =
[ { premises =
[ { premise = ""
, notation = ""
[ { 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."
, notation = "(PQ)"
}
, { premise = ""
, notation = ""
, { premise = "A higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets."
, notation = "(P)"
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
, { 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."
, notation = "(QR)"
}
]
, conclusion = ""
, conclusionNotation = "()"
, conclusion = "Therefore, ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets."
, conclusionNotation = "(R)"
}
]
}