Ask Your Question

palidehx's profile - activity

2023-06-16 12:38:25 +0200 received badge  Popular Question (source)
2016-10-19 05:35:17 +0200 received badge  Scholar (source)
2016-10-17 13:08:35 +0200 asked a question What's this result of equation solving?

Hi guys

I want to solve an equation that get from determinant of a matrix, but I cannot understand the result! Can anyone help me?

It's my code:

x = var('x')
A = Matrix([[0,1],[1,0]])
A = (I*x*A).exp()
A = A.determinant()
solve(A == 1,x,to_poly_solve ='force')

This is result!!!!!:

[x == 1/2*I*lambert_w(68)]

What is exactly that c68 (it's change every time!) [The result for equation should be pi/2]