First time here? Check out the FAQ!
answered 2021-04-19 09:23:29 +0100
Log rules do workfor symbolic values ; they just aren't autimatically applied :
sage: var("a, b") (a, b) sage: bool(log(a*b)==log(a)+log(b)) False sage: bool((log(a*b)==log(a)+log(b)).log_expand()) True
HTH,