This is a follow-up on the question subequation numbering in itemized list.
\documentclass[10pt]{article}
% for fancy math
\usepackage{amsmath}
% rank operator
\DeclareMathOperator*{\rank}{rank}
% Matrix transpose
\newcommand{\trans}[1]{\ensuremath{{#1}^\top}}
% for extra space at the end of abbreviation
\usepackage{xspace}
% positive semi-definite
\newcommand{\psd}{\textsc{psd}\xspace}
% boldface uppercase letters for matrices
\newcommand{\Abf}{\ensuremath{\mathbf A}}
\newcommand{\Bbf}{\ensuremath{\mathbf B}}
% boldface lowercase letters for vectors
\newcommand{\xbf}{\ensuremath{\mathbf x}}
% for math blackboard font
\usepackage{amssymb}
% set of real numbers
\newcommand{\Rbb}{\ensuremath{\mathbb R}}
\usepackage{palatino}
\usepackage[sc]{mathpazo}
\begin{document}
\noindent
For any real symmetric matrcies $\Abf$ such that $\rank(\Abf_{n\times n})=r$,
the following statements are equivalent
and any one of them can serve as the definition of
\emph{positive semi-definite} (\psd) matrices.
\begin{subequations}
\begin{itemize}
\item $\trans\xbf \Abf\xbf \geq 0$ for any non-zero vector
$\xbf\in\Rbb^{n\times 1}$.
\hfill\refstepcounter{equation}\textup{(\theequation)}%
\item All the $n$ eigenvalues of $\Abf$ are non-negative.
\hfill\refstepcounter{equation}\textup{(\theequation)}%
\item $\Abf=\trans\Bbf \Bbf$ for some $\Bbf$ with $\rank(\Bbf)=r$.
\hfill\refstepcounter{equation}\textup{(\theequation)}%
\end{itemize}
\end{subequations}
\end{document}

Now, I'd like to customize the labels (1a), (1b) and (1c) to distinguish definitions from other typical equation numbers.
- I'd like to label them as
(def1),(def2), and(def3). - But I still want to use
subequationsenvironment because I want to reference them as an equation byeqrefcommand.
How can I do this?

