Sistemi

« Older   Newer »
  Share  
view post Posted on 3/4/2020, 13:59     +2   +1   -1

Esperto

Group:
Member
Posts:
1,061
Reputation:
+709

Status:


C(11,5,2x 3;6x 2,4) = 11

1 2 3 4 6
1 2 8 10 11
1 3 5 9 11
1 4 7 9 10
1 5 6 7 8
2 3 7 8 9
2 4 5 7 11
2 5 6 9 10
3 4 5 8 10
3 6 7 10 11
4 6 8 9 11
......................
 
Top
view post Posted on 21/4/2020, 17:08     +2   +1   -1

Esperto

Group:
Member
Posts:
1,061
Reputation:
+709

Status:


C(11,5,min.3x 3;5x 2,5) = 9
if 3from11 - min.3x 2
if 4from11 - min.1x3;5x 2

01 02 03 07 08
01 02 05 10 11
01 03 04 05 07
01 04 05 08 10
01 04 07 10 11
02 03 06 09 10
02 04 06 09 11
03 06 08 09 11
05 06 07 08 09
................
 
Top
view post Posted on 15/5/2020, 11:29     +3   +1   -1

Esperto

Group:
Member
Posts:
1,061
Reputation:
+709

Status:


Abbreviated zone wheel on 35 numbers in 5 zones with 7 numbers, system on 5 numbers in line, warranty 5 if5x1from7 (N-0)
Condition: max 1 number in the same column
system on 2520 lines

Zones:
01 02 03 04 05 06 07 zone I
08 09 10 11 12 13 14 zone II
15 16 17 18 19 20 21 zone III
22 23 24 25 26 27 28 zone IV
29 30 31 32 33 34 35 zone V
...........................
EXCEL
in cells A1:G5 of Excel sheet type matrix:

01 02 03 04 05 06 07
08 09 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31 32 33 34 35

and enable this macro:

Sub makro7()

x = 0
margines = 10

For n1 = 1 To 7
For n2 = 1 To 7
If n2 <> n1 Then
For n3 = 1 To 7
If n3 <> n1 And n3 <> n2 Then
For n4 = 1 To 7
If n4 <> n1 And n4 <> n2 And n4 <> n3 Then
For n5 = 1 To 7
If n5 <> n1 And n5 <> n2 And n5 <> n3 And n5 <> n4 Then
x = x + 1
Cells(x, margines + 1) = Cells(1, n1)
Cells(x, margines + 2) = Cells(2, n2)
Cells(x, margines + 3) = Cells(3, n3)
Cells(x, margines + 4) = Cells(4, n4)
Cells(x, margines + 5) = Cells(5, n5)
End If
Next
End If
Next
End If
Next
End If
Next
Next

End Sub
.....................
author: fair_play from Polish team
 
Top
view post Posted on 16/5/2020, 12:59     +3   +1   -1
Avatar

Nutellina

Group:
Member
Posts:
31
Reputation:
+32
Location:
Perugia

Status:


Grazie Edi8,
per chi non è pratico di excel, fornisco il file costruito sulla base delle informazioni fornite da Edi8

Edited by Andrea Caprioli - 16/5/2020, 15:03

Download attachment
sviluppo_sistemi_Polish_Team.xlsm ( Number of downloads: 144 )

 
Top
view post Posted on 15/2/2021, 07:40     +1   +1   -1

Esperto

Group:
Member
Posts:
1,061
Reputation:
+709

Status:


18,5,3x2,5=9

01 02 03 04 08
01 03 05 06 07
01 04 07 09 10
02 04 05 06 10
02 05 07 08 09
03 06 08 09 10
11 13 14 15 16
11 12 13 17 18
14 15 16 17 18
..................
18,5,2x2,5=6
18,5,1x2,4=6

01 02 03 04 05
01 02 03 04 06
01 05 06 07 08
02 03 04 07 08
09 10 11 12 13
14 15 16 17 18
...................
 
Top
view post Posted on 15/2/2021, 17:02     +1   -1

Esperto

Group:
Member
Posts:
1,061
Reputation:
+709

Status:


20,5,2,5=4

01 02 03 04 05
06 07 08 09 10
11 12 13 14 15
16 17 18 19 20
 
Top
view post Posted on 27/5/2021, 22:14     +1   -1

Esperto

Group:
Member
Posts:
1,061
Reputation:
+709

Status:


9,5,3,4=5 (if 3from9 min. 2x2) author: Alessandro Jurcovich

1 2 3 4 5
1 2 3 6 7
1 4 5 8 9
2 3 6 7 8
4 5 6 7 9
................
9,5,4x2,3=8

01 02 03 06 09
01 02 03 07 08
01 02 04 05 09
01 03 04 05 08
01 06 07 08 09
02 03 04 08 09
02 05 06 07 08
03 04 05 06 07
................
 
Top
view post Posted on 19/1/2023, 16:37     +1   +1   -1

Esperto

Group:
Member
Posts:
1,061
Reputation:
+709

Status:


16,5,3,5=14 (WeEf)
........................
16,5,3x3,5=31

Download attachment
16_5_3x3_5_31.txt ( Number of downloads: 20 )

 
Top
22 replies since 17/7/2018, 13:01   4617 views
  Share