Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Graphing a Function

    Hello, any idea on how to graph the following function:
    y=35+2x^2-ln(x^3)

    I tried this:
    twoway function y=35+2x^2-ln(x^3), range (0 1)
    error in expression: 35+2x^2-ln(x^3)

    Thanks in advance

  • #2
    Implicit multiplication must be made explicit.

    Code:
    y=35+2*x^2-ln(x^3), range (0 1)
    ln(x^3) is 3 * ln(x)

    Comment


    • #3
      Thank you for your answer Nick, so this would mean:
      twoway function y=35+2*x^2-3*ln(x), range (0 1) I believe it worked.

      Best,

      Comment

      Working...
      X