You care about XHTML-compatibility in HTML5, if you are creating documents that use the XHTML serialization of HTML5, either exclusively by serving the document with an application/xhtml+xml mime type, or creating a polyglot document that can be served either as application/xhtml+xml or as text/html (the 'normal' html mime-type).
If you are only using text/html, then you do not need to care about XHTML syntax. However, you may use XML-style self-closing syntax when embedding SVG or MathML in your page. (SVG is widely supported in the latest browsers, MathML less so.) You may also use /> to end void HTML elements such as meta, link, input, img etc, but this has no effect different from using > to end those elements.
A minor comment on terminology. In markup, in common parlance either checked or checked="checked" is an "attribute". A "property" is something else.
/>in HTML5, either. – Mark Reed Sep 8 '12 at 13:52