-1

Why is $\log a = \log b \Rightarrow a=b$ true?

A.G.
  • 4,362
  • 13
  • 18
Will
  • 1

3 Answers3

2

Straightforward approaches are

FindInstance[Exists[{a, b}, Log[a] == Log[b] && a != b], {a, b}, Complexes]
*({})*

and

FunctionInjective[Log[z], z, Complexes]
(*True)*
user64494
  • 26,149
  • 4
  • 27
  • 56
2

Reduce can do it:

Reduce[Log[a] == Log[b], {a, b}]
(* b == a *)
Coolwater
  • 20,257
  • 3
  • 35
  • 64
0

Simple proof

Exp /@ (Log[a] == Log[b])
(* a == b *)

Of course the converse is not true

Log /@ (Exp[a] == Exp[b])
(* Log[E^a] == Log[E^b] *)
mikado
  • 16,741
  • 2
  • 20
  • 54