The Rectified Linear Unit (ReLU) function is defined as:
\[
\text{ReLU}(x) = \max(x, 0)
\]
This function returns \( x \) for positive values and 0 for non-positive values of \( x \).
Step 1: Continuity of ReLU
The ReLU function is continuous everywhere. This is because:
For \( x > 0 \), ReLU behaves like the identity function, \( \text{ReLU}(x) = x \), which is continuous.
For \( x <= 0 \), ReLU is constant at 0, which is also continuous.
At \( x = 0 \), the left-hand and right-hand limits both approach 0, and the function value is 0, ensuring continuity.
Thus, ReLU is continuous everywhere, so Option (A) is correct.
Step 2: Differentiability of ReLU
For \( x > 0 \), the derivative of ReLU is \( 1 \) (since ReLU behaves like \( x \) for positive values).
For \( x < 0 \), the derivative of ReLU is \( 0 \) (since ReLU is constant at 0 for non-positive values).
However, at \( x = 0 \), there is a sharp corner in the function, where the left-hand derivative is 0 and the right-hand derivative is 1. Since the derivative does not exist at \( x = 0 \), ReLU is not differentiable at \( x = 0 \).
Thus, Option (C) is correct.
Step 3: Symmetry Property of ReLU
The function \( \text{ReLU}(x) = \text{ReLU}(ax) \) holds for all \( a \in \mathbb{R} \). This is because multiplying \( x \) by a constant factor does not change whether \( x \) is positive or negative, as long as the function definition is \( \max(x, 0) \). Therefore, Option (D) is also correct.
Conclusion:
The correct answer is that ReLU is continuous everywhere (Option A), and ReLU is not differentiable at \( x = 0 \) (Option C).
Thus, the correct answer is (A) and (C).