#Geogebra

36 messages · Page 1 of 1 (latest)

lost wyvern
#

I have to find highest point in the z-axis on a 2-variable function.
How do I do this?

hidden lynxBOT
#
  1. Ask your question and show the work you've done so far. If you've posted a screenshot of a question, specify which part you need help with.
  2. Wait patiently for a helper to come along.
  3. Once someone helps you, say thank you and close the thread with:
    +close
    
  4. Feel free to nominate the person for helper of the week in #helper-nominations
  5. Do not ping the mods, unless someone is breaking the rules.
  6. If you're happy with the help you got here, and the server overall, you can contribute financially as well:
lost wyvern
#

@pseudo hatch

pseudo hatch
#

oh um yeah that idek lmao

#

I was hoping it was very basic advice

#

sorry

lost wyvern
#

alright

pseudo hatch
#

just wait someone will help

lost wyvern
#

ye

#

looks like that

#

thats the function

mortal moss
# lost wyvern I have to find highest point in the z-axis on a 2-variable function. How do I do...

No need to use nested ifs.
f(x, y) = (a/b) if(x > 0 ∧ y > 0 ∧ x + y < 40, (1 + x/100)/(1 - y/100))
Apart from that, the usual approach works. Though, here it will work only if you specifically include the boundary by doing f(x, y) = (a/b) if(x >= 0 ∧ y >= 0 ∧ x + y <= 40, (1 + x/100)/(1 - y/100)).

  1. Find critical points in the interior, if there are any.
  2. Find critical points on the boundary. If it's given piecewise, also consider the boundary points between the pieces.
  3. Compare the values at all the critical points you've found.
lost wyvern
#

how do i find critical points on the boundary?

mortal moss
lost wyvern
#

i dont know what parametrize or piece means

mortal moss
#

You should review parametric and piecewise functions, then.

lost wyvern
#

ok, do you want to get pinged if i need help again?

mortal moss
lost wyvern
#

ok

#

thanks

lost wyvern
mortal moss
lost wyvern
#

like no a or b, just constants

mortal moss
#

Well, that doesn't matter.

#

But that's not what I meant above.

#

The boundary of your region is described by three inequalities: x ≥ 0, y ≥ 0, x + y ≤ 40. So, we can divide it into three pieces and parametrize them as follows:

  1. x = 0, y = t, 0 ≤ t ≤ 40
  2. x = t, y = 40 - t, 0 ≤ t ≤ 40
  3. x = t, y = 0, 0 ≤ t ≤ 40
    Note that t is unique for each case. If that confuses you, you can call the parameters by different names, like t1, t2 and t3.
lost wyvern
#

what is t

mortal moss
#

Parameter.

lost wyvern
#

i believe the highest point is on the boundary, could you help me find it?

mortal moss
#

As I said above, check each piece of the boundary, then the points between the pieces.

lost wyvern
#

wdym by piece, i didnt study math in english

mortal moss
lost wyvern
#

i found out what i wanted to find out