Author Topic: Formul for tournament with buyin, nbr players, rank  (Read 666 times)

Adjdudant

  • Newbie
  • *
  • Posts: 2
    • View Profile
Formul for tournament with buyin, nbr players, rank
« on: May 11, 2018, 07:37:21 AM »
Hi everyone,

First, sorry for my bad english writing, I speak usually french...

However, I will try to explain you my problem.

I need a formul, for a season, how can gives points with this variables :

Buyin
Number of players
Rank

I've tried some forumul but it's not woriking as I want.

For exemple

switch(rank, 1, (buyin-(buyin-playerLeft), 2, (buyin-(buyin-playerLeft),....

I want somethings shorter like n-r +1 included the buyin.

For exemple a table with 6 players would give the repartition:

Buyin $ 10

1) 50 points (10x(6-1) ==> buyin x (number of player - rank)
2) 40 points (10x(6-2) ==> buyin x (number of player - rank)
...

Can someone help me?

Thanks

Adjdudant

Adjdudant

  • Newbie
  • *
  • Posts: 2
    • View Profile
Re: Formul for tournament with buyin, nbr players, rank
« Reply #1 on: May 11, 2018, 11:28:35 AM »
I've found a solution:

n*(n - r)+n

easy in fact...