- #1
Dustinsfl
- 2,281
- 5
How can I tell Mathematica or Matlab to solve tan x = 1/x?
In Mathematica, I tried NSolve[Tan[x]==1/x,x] but I was told Mathematica can't do this.
I am trying to find the the first 10 positive values.
In Matlab, I tried
I want to return the first 10 values. Matlab returned -263
In Mathematica, I tried NSolve[Tan[x]==1/x,x] but I was told Mathematica can't do this.
I am trying to find the the first 10 positive values.
In Matlab, I tried
Code:
syms x
solve(tan(x) == 1/x)
I want to return the first 10 values. Matlab returned -263
Last edited: