Suppose we have $n$ elements with weights $w_i$'s for $i \in [n]$ with $\sum_i w_i = 1$ and we want to sample $k < n$ elements using sampling without replacement.
When we use sampling with replacement, clearly if $w'_i > w_i$, then regardless of the other weights, the probability of element $i$ being sampled in $k$ trials increases, since the probability is simply $$1 - (1 - w_i)^k.$$ However, we do not have a closed-form counterpart for sampling without replacement. Intuitively, this should also hold, but I cannot have a rigorous proof for that. See Probability to choose specific item in a "weighted sampling without replacement" experiment. See also Probability of Choosing an Item in Weighted Random Sampling Without Replacement.
Any idea would be highly appreciated.
In fact, this is not true in general.
Counterexmaple: Consider $n = 3$, $k = 2$, and $W = (0.1, 0.89, 0.01)$ and $W' = (0.2, 0.4, 0.4)$. Here $0.1 = w_1 < w'_1 = 0.2$, but the probability of element $1$ being sampled decreases from $0.999119$ to $0.952$.
Do we have additional conditions to make this hold?