FreeQ
FreeQ(`expr`, `x`)returns ‘True’ if
exprdoes not contain the expressionx.
Examples
>> FreeQ(y, x)True>> FreeQ(a+b+c, a+b)False>> FreeQ({1, 2, a^(a+b)}, Plus)False>> FreeQ(a+b, x_+y_+z_)True>> FreeQ(a+b+c, x_+y_+z_)False>> FreeQ(x_+y_+z_)(a+b)TrueImplementation status
- ✅ - full supported