How ca I solve this problem in Matlab 2018b?
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Nélio Dias
 el 3 de Nov. de 2020
  
    
    
    
    
    Editada: Walter Roberson
      
      
 el 3 de Nov. de 2020
            I'm trying to solve this question:
and arrive in 
How can I do it? I tried  this commands but didn't work. There is a way to solve this in matlab?
syms x y
solve(tan(atan(y/(x+1))-2*atan(y/x)==0))
solve(atan(y/(x+1))-2*atan(y/x)==0))
0 comentarios
Respuesta aceptada
  Walter Roberson
      
      
 el 3 de Nov. de 2020
        
      Editada: Walter Roberson
      
      
 el 3 de Nov. de 2020
  
      syms x y X
sol = solve(atan(y/(x+1))-2*atan(y/x)==pi, 'returnconditions', true)
eqn = (X == sol.x(2)).^2
lhs(eqn)-rhs(eqn)
However this is missing the multiplication by y that you are expecting.
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Calculus en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!