feat: added arguments

This commit is contained in:
Nick 2024-11-17 19:17:04 -06:00
parent 74dfd2725c
commit 600bfc267c
7 changed files with 186 additions and 153 deletions

View file

@ -5,50 +5,29 @@ import Debate.Types exposing (..)
argumentCropDeaths : Argument
argumentCropDeaths =
{ argumentTitle = "Title"
{ argumentTitle = "Cropland vs Wildland Argument"
, propositionTitle = "Proposition"
, propositionSummary = "Summary"
, proofLink = ""
, propositionSummary = "We can't claim to know that cropland kills more animals than wildland, because if we did know this, there would be evidence for it, and there isn't any such evidence."
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(~3Q)%7C=(~3P)"
, definitionTable =
[ { definiendum = ""
, definiens = ""
[ { definiendum = "P"
, definiens = "it is known that cropland leads to more animal death than wildland"
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
, { definiendum = "Q"
, definiens = "there is evidence that cropland leads to more animal death than wildland"
}
]
, argumentFormalization =
[ { premises =
[ { premise = ""
, notation = ""
[ { premise = "If it is known that cropland leads to more animal death than wildland, then there is evidence that cropland leads to more animal death than wildland."
, notation = "(PQ)"
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
, { premise = "There is not evidence that cropland leads to more animal death than wildland."
, notation = "(P)"
}
]
, conclusion = ""
, conclusionNotation = "()"
, conclusion = "Therefore, it is not known that cropland leads to more animal death than wildland."
, conclusionNotation = "(¬P)"
}
]
}