-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeductive-reasoning.jsx
More file actions
28 lines (25 loc) · 1.14 KB
/
deductive-reasoning.jsx
File metadata and controls
28 lines (25 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import React from 'react';
export default function DeductiveReasoning() {
return (
<div className="space-y-6 font-mono text-sm leading-relaxed">
<p>
<strong className="text-current">Deductive Reasoning</strong> (or top-down logic) is the process of reasoning from one or more general statements (premises) to reach a logically certain conclusion.
</p>
<div className="border-l-2 border-emerald-500/50 pl-4 py-1 italic opacity-70 text-xs">
If A = B and B = C, then A = C.
</div>
<p>Key properties of deductive arguments:</p>
<ul className="space-y-2 text-xs opacity-80 list-disc pl-4">
<li>
<strong>Validity:</strong> An argument is valid if its conclusion logically follows from its premises, regardless of whether the premises are true.
</li>
<li>
<strong>Soundness:</strong> An argument is sound if it is both valid AND its premises are actually true.
</li>
<li>
<strong>Certainty:</strong> Unlike inductive reasoning, deductive reasoning guarantees a conclusion if the premises are correct.
</li>
</ul>
</div>
);
}