Is it possible to preform advanced mathmatics in Luau?

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear! I want to know if it’s possible to preform advanced math in Lua like algebra calculus etc.

  2. What is the issue? Include screenshots / videos if possible! I’m not sure if this is even possible if it is i’m not sure what the syntax is for it

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub? yes and i have found nothing that answers my question

After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!

Hello i wanted to preform advanced math in Luau but i’m not sure if it’s even possible if it’s possible what is the syntax for it thanks for your help.

1 Like

If you mean make something like a derivative or integral calculator, yeah probably. You just need to know how to convert a human readable string into something the computer can understand.

Can you give some examples of the math>

These links might help


https://developer.roblox.com/en-us/api-reference/lua-docs/math



local x = 42
local y = 69 ^ 2
local z = math.log(x, 10)
print(x, y, z)

Examples are Algebra

a + 2 = 6

b + 4 = 8

If we’re just talking about polynomials, all you would need are the coefficients, and you could apply the correct formula.