Skip to main content
edited tags
Link
Michael E2
  • 258.6k
  • 21
  • 370
  • 830
added 46 characters in body
Source Link
sara nj
  • 343
  • 1
  • 8

I want to solve n ODE in Mathematica, but there is an error I cannot understand: "The function x appears with no arguments."

This is the code I used:

eqn = x^''[y]x''[y] + a (x^')[y]x'[y] sin[ySin[y - y0] + a x[y] (cos[yCos[y - y0] - s) == 0; sol = DSolve[eqn, x, y] 

Could anyone help me? Is there another function that solve the problem?

I want to solve n ODE in Mathematica, but there is an error I cannot understand: "The function x appears with no arguments."

This is the code I used:

eqn = x^''[y] + a (x^')[y] sin[y - y0] + a x[y] (cos[y - y0] - s) == 0; sol = DSolve[eqn, x, y] 

Could anyone help me?

I want to solve n ODE in Mathematica, but there is an error I cannot understand: "The function x appears with no arguments."

This is the code I used:

eqn = x''[y] + a x'[y] Sin[y - y0] + a x[y] (Cos[y - y0] - s) == 0; sol = DSolve[eqn, x, y] 

Could anyone help me? Is there another function that solve the problem?

Source Link
sara nj
  • 343
  • 1
  • 8

Solving Nonlinear ode in mathematica

I want to solve n ODE in Mathematica, but there is an error I cannot understand: "The function x appears with no arguments."

This is the code I used:

eqn = x^''[y] + a (x^')[y] sin[y - y0] + a x[y] (cos[y - y0] - s) == 0; sol = DSolve[eqn, x, y] 

Could anyone help me?