Let's say we have a truth table with two inputs (A, B) and one output (X).
A | B | X |
|---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
I know that I can write a boolean function by (a) choosing rows where X is 1, (b) writing the minterms for these lines and (c) write cannonical sum of products (CSOP) like this: $$ F(A,B) = (\overline{A}\cdot B) + (A \cdot \overline{B}) $$
But how do we use the same principle if there is only one input (A) and one output (X) i.e.:
A | X |
|---|---|
0 | 1 |
1 | 0 |
Does minterm even exist in this example?
Or maybe even this (X is constantly 0):
A | X |
|---|---|
0 | 0 |
1 | 0 |
Note: I want the correct mathematical derivation of these simple examples.