0

I have an example where a total of 2200 names are entered.

  1. Each name has an assigned percentage value from 0% to 100%.
  2. The total number of names with a value above 88% is 459.

I need to formulate this in a mathematical way in a formula that will point out that it is precisely the 459 names which are those we look for.

Thank you for any help.

  • 1
    Welcome to MSE! Your question will be better appreciated if you show that you have made an effort. – For the love of maths Jan 05 '18 at 15:55
  • 1
    It would also help if you specify why you need this. Is it just a mathematical notation, or do you want to implement it in some software? – Andrei Jan 05 '18 at 15:59
  • In the spirit of what Andrei said, do you care at all about the 1741 names whose percentage is 88 or less? What did you have in mind when you tagged your question with "regular expressions?" – Fabio Somenzi Jan 05 '18 at 16:19
  • I just want to have the mathematical expression for my thesis. Please find the file under the following link – 4petris Jan 05 '18 at 16:27
  • Something along the lines of "$W$ is a set of words, $I$ is the interval of the real numbers from $0$ to $100$ and $f : W \to I$ is a function that assigns a percentage to all elements of $W$. Let $H = {w \in W \mid f(w) > 80}$"? – Fabio Somenzi Jan 05 '18 at 16:55

1 Answers1

0

You can use the following expressions: $$A=\{(x_i,y_i),i=\overline{1,2200},0\le y\le100\}\\|A|=2200\\B=\{(x_i,y_i)\in A,y_i\gt88\}\\B\subset A\\|B|=459$$ You might be able to skip some of the lines. An alternative notation for cardinality is "$\#$".

Andrei
  • 37,370