Speakpigeon wrote: ↑Thu Feb 28, 2019 6:56 pm
All there is is an idea, the idea of bananas or the idea of apples. The idea of bananas is best described as an association of more basic ideas, like the mental visualisation of one or several bananas, perhaps the idea that it's a fruit, probably some idea as to the typical size of a banana etc.
You could think of that as the conjunction of several predicates. So?
No. I would think of it as an abstract class called a banana. With individual properties which are themselves abstract classes.
And then I would use INSTANTIATION to create one instance of one particular banana:
https://en.wikipedia.org/wiki/Instance_ ... r_science)
There is the abstract class "Banana".
There is the abstract class "Color"
Bananas have color
There is A particular banana.
There are the 10 bananas in my fridge.
Code: Select all
class Color(object):
def __init__(self, name):
self.name = name
class Banana(object):
def __init__(self):
self.color = Color('Yellow')
A = Banana()
print(A.color.name)
Fridge = []
for i in range(10):
Fridge.append(Banana())
Speakpigeon wrote: ↑Thu Feb 28, 2019 6:56 pm
Why an empty set?
I definitely believe there are things in the world that are bananas as I think of them. Not only it's not an empty set but it's a set that contain all the bananas that exist, that have existed and that will exist. It's a lot of bananas. Nothing like an empty set.
So why an empty set according to you?
Well, I just figured you would be consistent. When you speak of "ALL" X you spoke of sets. It doesn't matter.
I am OK with that! Indeed, it is a lot of bananas! How many?
How do you express an undeterminate set in logic?
Is the undeterminate set of Apples the same as the undeterminate set of Oranges?
Speakpigeon wrote: ↑Thu Feb 28, 2019 6:56 pm
You're not making sense.
Every one of your lines here is somehow wrong.
And YET you can't tell me how, right? That SOMEHOW showing you how expressive English is, and how unexpressive your logic is.
It has a very limited grammar/semantics with which to construct your ideas.
I am giving you every day English sentences and concepts to translate into your logic and it's tripping you up.
I know WHY it's tripping you up - that's WHY I am doing it.
Speakpigeon wrote: ↑Thu Feb 28, 2019 6:56 pm
Most people will believe there are bananas. As a matter of fact, I eat one every day!
What does it mean to talk about bananas in the abstract?
EB
We are doing it right now!!!! What does it mean to you? We are talking about bananas abstractly!
To me it means to be able to talk about the concept of a banana. And so I need a conceptual meta-language. I have one!
Doesn't it bother you that you don't seem to have the faintest of ideas about how your own mind works?
It's just a computer. Maybe you should study computer science, eh?