Particle_Swarm_Optimization_algorithm test case
f(x, y) = cos((x - 1.14)6) - 100 * (y2 - x)4
0 ≤ x ≤ 2
0 ≤ y ≤ 3
x + y ≥ 1
Swarm size is 200 particles
Termination condition is 5000 iterations
Inertia weight w = 0.7
Acceleration constants c1 = c2 = 2.0
Velocity maximum v = 1.0
Dissipative mechanism: To maintain diversity, each particle has a 1% chance of being randomly reinitialized in the search space.
Bouncing mechanism: Instead of using a penalty for constraint handling (as in GA), a bouncing strategy was applied to keep all particles inside the feasible region. If a particle violates the constraint, it is immediately reflected back into the valid space.
As the number of samples is small and the time is limited, student t test will be used to compare GA and PSO.
For both algorithms were made 10 trials.
For GA the mean value is 0.976 and variance is 0.0009463. For PSO the mean value is 0.999 and variance is 0.0000012
Suppose both solutions are approximately normally distributed with unequal variances, check whether GA is superior to B at 𝛼 = 0.05 (smaller α means more strict and more confident decision).
- Hypotheses:
H0 : σ2GA = σ2PSO
H1 : σ2GA ≠ σ2PSO
- Calculate F statistics:
F = s2GA / s2PSO = 788. 583
- Critical values for F statistics:
dfGA = nGA - 1 = 9
dfPSO = nPSO - 1 = 9
-
Two two-tailed test, split α into two parts:
α/2 = 0.025
-
F distribution table
F(0.025;9,9) = 4.03 - right tail
1/F(0.025;9,9) = 0.248 - left tail
- Rejection regions
F = 788.583 > 4.03
Solutions of GA are significantly greater than solutions of PSO, so reject H0 This is also statistical evidence that PSO is more consistent than GA.
A two-sample t-test with unequal variances (Welch’s t-test) was performed.

As PSO has a higher mean than GA, the test indicates that PSO achieves statistically significantly better results than GA.

The null hypothesis is rejected, confirming that PSO’s mean performance is significantly better than GA’s.
A nonparametric Mann–Whitney U test was also performed to compare the distributions of GA and PSO results.
p-value < 0.05
The difference between GA and PSO is statistically significant. Code can be found in a separate file.
To compare the performance of GA and PSO a set of statistical tests were made based on the results from 10 independent runs of each algorithm.
Based on F test there is a significant difference between the variances of the two algorithms, it is clear that PSO is more consistent than GA.
Based on Student t test for mean comparison with unequal variances, the difference in means is statistically significant. So, the PSO outperforms GA in terms of average objective function value.
Based on Mann – Whitney U test, there is a difference between GA and PSO performance distribution, which shows that PSO performance is much better than GA performance.
Based on three tests, PSO performance is significantly more stable, and has higher average performance. PSO is statistically superior to GA for the given optimization task.