Mathematica can't simplify some logarithmic expressions
Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
When I simplify some logarithmic expressions in Mathematica, it just returns the expression
FullSimplify[Log[Sqrt[2] + 1, 5 Sqrt[2] + 7]]
FullSimplify[Log[Sqrt[2] + 1, 17 - 12 Sqrt[2]]]
Obviously, simplification isn't completely, using Maple could get
Is there any way I can tell Mathematica to be smarter?
simplifying-expressions algebraic-manipulation
add a comment |Â
up vote
2
down vote
favorite
When I simplify some logarithmic expressions in Mathematica, it just returns the expression
FullSimplify[Log[Sqrt[2] + 1, 5 Sqrt[2] + 7]]
FullSimplify[Log[Sqrt[2] + 1, 17 - 12 Sqrt[2]]]
Obviously, simplification isn't completely, using Maple could get
Is there any way I can tell Mathematica to be smarter?
simplifying-expressions algebraic-manipulation
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
When I simplify some logarithmic expressions in Mathematica, it just returns the expression
FullSimplify[Log[Sqrt[2] + 1, 5 Sqrt[2] + 7]]
FullSimplify[Log[Sqrt[2] + 1, 17 - 12 Sqrt[2]]]
Obviously, simplification isn't completely, using Maple could get
Is there any way I can tell Mathematica to be smarter?
simplifying-expressions algebraic-manipulation
When I simplify some logarithmic expressions in Mathematica, it just returns the expression
FullSimplify[Log[Sqrt[2] + 1, 5 Sqrt[2] + 7]]
FullSimplify[Log[Sqrt[2] + 1, 17 - 12 Sqrt[2]]]
Obviously, simplification isn't completely, using Maple could get
Is there any way I can tell Mathematica to be smarter?
simplifying-expressions algebraic-manipulation
simplifying-expressions algebraic-manipulation
edited 1 hour ago
asked 2 hours ago
mathe
2,46611642
2,46611642
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
4
down vote
Use RootApproximant
y1 = Log[Sqrt[2] + 1, 5 Sqrt[2] + 7];
y1 // RootApproximant
(* 3 *)
Verifying,
y1 == 3 // FullSimplify
(* True *)
y2 = Log[2 Sqrt[2] + 3, 17 - 12 Sqrt[2]];
y2 // RootApproximant
(* -2 *)
Verifying,
y2 == -2 // FullSimplify
(* True *)
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
Use RootApproximant
y1 = Log[Sqrt[2] + 1, 5 Sqrt[2] + 7];
y1 // RootApproximant
(* 3 *)
Verifying,
y1 == 3 // FullSimplify
(* True *)
y2 = Log[2 Sqrt[2] + 3, 17 - 12 Sqrt[2]];
y2 // RootApproximant
(* -2 *)
Verifying,
y2 == -2 // FullSimplify
(* True *)
add a comment |Â
up vote
4
down vote
Use RootApproximant
y1 = Log[Sqrt[2] + 1, 5 Sqrt[2] + 7];
y1 // RootApproximant
(* 3 *)
Verifying,
y1 == 3 // FullSimplify
(* True *)
y2 = Log[2 Sqrt[2] + 3, 17 - 12 Sqrt[2]];
y2 // RootApproximant
(* -2 *)
Verifying,
y2 == -2 // FullSimplify
(* True *)
add a comment |Â
up vote
4
down vote
up vote
4
down vote
Use RootApproximant
y1 = Log[Sqrt[2] + 1, 5 Sqrt[2] + 7];
y1 // RootApproximant
(* 3 *)
Verifying,
y1 == 3 // FullSimplify
(* True *)
y2 = Log[2 Sqrt[2] + 3, 17 - 12 Sqrt[2]];
y2 // RootApproximant
(* -2 *)
Verifying,
y2 == -2 // FullSimplify
(* True *)
Use RootApproximant
y1 = Log[Sqrt[2] + 1, 5 Sqrt[2] + 7];
y1 // RootApproximant
(* 3 *)
Verifying,
y1 == 3 // FullSimplify
(* True *)
y2 = Log[2 Sqrt[2] + 3, 17 - 12 Sqrt[2]];
y2 // RootApproximant
(* -2 *)
Verifying,
y2 == -2 // FullSimplify
(* True *)
answered 1 hour ago
Bob Hanlon
56.5k23591
56.5k23591
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f184435%2fmathematica-cant-simplify-some-logarithmic-expressions%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password