Recognizer for numericx-value.
(numericx-valuep x) → yes/no
Function:
(defun numericx-valuep (x) (declare (xargs :guard t)) (let ((__function__ 'numericx-valuep)) (declare (ignorable __function__)) (or (numeric-valuep x) (floatx-valuep x) (doublex-valuep x))))
Theorem:
(defthm booleanp-of-numericx-valuep (b* ((yes/no (numericx-valuep x))) (booleanp yes/no)) :rule-classes :rewrite)
Theorem:
(defthm numericx-valuep-when-numeric-valuep (implies (numeric-valuep x) (numericx-valuep x)))
Theorem:
(defthm numericx-valuep-when-floatx-valuep (implies (floatx-valuep x) (numericx-valuep x)))
Theorem:
(defthm numericx-valuep-when-doublex-valuep (implies (doublex-valuep x) (numericx-valuep x)))