Answer:
The total number of adults will be: 120 adults
Step-by-step explanation:
Given that there were 24 adults and 10 children in a game.
Thus, adults to children ration = 24:10 or 24/10
- If there were 50 children, how many adults would be at the game?
Let 'x' be the number of adults when there 50 children.
so the ration of adults 'x' to 50 childern = x: 50 or x / 50
As the ratio is the same.
Thus,
24 : 10 = x : 50
24/10 = x/50
switching sides
x/50 = 24/10
x = 24/10 × 50
x = 120 adults
Therefore, the total number of adults will be: 120 adults
Yes, ode45 can be used for higher-order differential equations. You need to convert the higher order equation to a system of first-order equations, then use ode45 on that system.
For example, if you have
... u'' + a·u' + b·u = f
you can define u1 = u, u2 = u' and now you have the system
... (u2)' + a·u2 + b·u1 = f
... (u1)' = u2
Rearranging, this is
... (u1)' = u2
... (u2)' = f - a·u2 - b·u1
ode45 is used to solve each of these. Now, you have a vector (u1, u2) instead of a scalar variable (u). A web search regarding using ode45 on higher-order differential equations can provide additional illumination, including specific examples.
I do not know for sure but im almost 100% sure that the answer is y=97 and x=1.08 i hope that is correct and that it helps you out.