public bool Equals(ElectricCharge other) => IsPositive == other.IsPositive && Denominator == other.Denominator && Numerator == other.Numerator;
public bool Equals(ElectricCharge other) => Denominator == other.Denominator && Numerator == other.Numerator;