leesugil / symbolic

Symbolic calculator for arithmetic operations with fractions
GNU General Public License v3.0
1 stars 0 forks source link

law of exponentiation #14

Closed leesugil closed 5 months ago

leesugil commented 5 months ago

x^(a + b) = x^a x^b (x^a)^b = x^(a b)

leesugil commented 5 months ago
  1. x^(a + b) = x^a * x^b
    • "^" currently has only right-distributivity over { " * ", " / ", NULL }
    • invent something like "left_dist_over_by" with { { " + ", " * ", NULL}, NULL }
  2. (x^a)^b = x^(a * b)
    • "^" currently has only right-distributivity over { " * ", " / ", NULL }
    • invent something like "left2right_assoc_by" with { { "^", " * ", NULL}, NULL }
leesugil commented 5 months ago

update included in the upcoming major update for commutativity, associativity and distributive properties

Screenshot 2024-02-06 at 10 43 57 AM Screenshot 2024-02-06 at 10 44 23 AM