-1

Use the following definitions to represent English statements as first-order formulas.

Define:

● - is a set of companies

● - is a set of investors

● = {(, , ) | (, , ) ∈ × × ∧ ℎ ℎ }- investments

● (, , , ) - investment x describes investor i holding more than n shares of company c

Represent: "Each company has at least one investor holding more than 100 of its shares"

2 Answers2

0

I had a similar problem and came up short. The way I approached it was:

∀x ∈ C. ∃y ∈ I. (so far)

Unfortunately the ICN and P(x,i,c,n) part is tripping me up, especially regarding n>100. I hope that I'm correct so far; hopefully someone with more knowledge can build off of/correct what I have.

kews
  • 1
  • 1
0

I have tried to solve this and came with this solution:

∀c∈C. ∃i∈I. ∃x∈ICN. P(x,i,c,100)

Can someone confirm if this is the correct solution?

Ivan Aracki
  • 4,861
  • 11
  • 59
  • 73