Find the number of different symmetric matrices with each element being 0 or 1.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The four diagonal elements can fill with 0 and 1 with 2^4 ways.Since matrix is symmetrical upper triangular matrix elements and lower triangular matrix elements are same.So we have to freedom to fill these 6 places.These place fill with 0 and 1 with 2^6 ways. So total number of ways fill 4×4 symmetrical matrix with 0 and 1 is 2^4*2^6=2^10=1024