bob012345 said:
I did that graphically but still it was too unwieldy to quickly get an answer. I tried asking Google Gemini to find the six point sets that eliminated all the squares but it choked.
If you apply my approach you will see that all this thread is about the set cover problem which can be solved by using one of the algorithms. For example, it can be solved by using a greedy algorithm.
The set cover problem is a part of combinatorics, computer science, operation research and complexity theory. The set cover problem is to identify a smallest number of sets of a given m sets in the way that the union of these identified sets contains all the elements that are contained in the given m sets. The set which contains all the elements that are contained in the given m sets is called the universe.
## \begin{array} \\
& & S_{1} & S_{2} & & \\
& & S_{3} & S_{4} & & \\
S_{5} & S_{6} & S_{7} & S_{8} & S_{9} & S_{10} \\
S_{11} & S_{12} & S_{13} & S_{14} & S_{15} & S_{16} \\
& & S_{17} & S_{18} & & \\
& & S_{19} & S_{20} & & \\
\end{array}
\,\,\,\, \Leftrightarrow \,\,\,\,
\begin{array} \\
& & \{f,n,u\} & \{f,p,t\} & & \\
& & \{f,g,j,o,s\} & \{f,g,l,q,r\} & & \\
\{a,n,t\} & \{a,b,j,p,r\} & \{b,c,g,k,l\} & \{c,d,g,j,m\} & \{d,e,l,n,s\} & \{e,p,u\} \\
\{a,o,u\} & \{a,b,k,q,s\} & \{b,c,h,j,m\} & \{c,d,h,k,l\} & \{d,e,m,o,r\} & \{e,q,t\} \\
& & \{h,i,k,n,r\} & \{h,i,m,p,s\} & & \\
& & \{i,o,t\} & \{i,q,u\} & & \\
\end{array} ##
The 20 points are the 20 sets ## S_{1} ##, ## S_{2} ##, ## S_{3} ##, ## S_{4} ##, ## S_{5} ##, ## S_{6} ##, ## S_{7} ##, ## S_{8} ##, ## S_{9} ##, ## S_{10} ##, ## S_{11} ##, ## S_{12} ##, ## S_{13} ##, ## S_{14} ##, ## S_{15} ##, ## S_{16} ##, ## S_{17} ##, ## S_{18} ##, ## S_{19} ## and ## S_{20} ##. The 21 squares are the 21 elements ## a ##, ## b ##, ## c ##, ## d ##, ## e ##, ## f ##, ## g ##, ## h ##, ## i ##, ## j ##, ## k ##, ## l ##, ## m ##, ## n ##, ## o ##, ## p ##, ## q ##, ## r ##, ## s ##, ## t ## and ## u ##. The universe is ## U=\{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u\} ##.
The problem is to pick a smallest sub-collection of the collection of the given 20 sets where the union of the sets from the picked sub-collection is equal to the universe.