TRENDING NEWS

POPULAR NEWS

Removing Brackets Maths Help

Removing Brackets Help Me!?

4(2x-5)= 4*2x - 4* 5 = 8x -20

and 5(x+6) = 5*x + 5*6 = 5x +30

now adding both

8x-20+5x+30 will give u

13x + 10

What algorithm I can use to remove all brackets from math expression and still have valid math expression?

Reverse Polish Notation.  RPN.  ...named for Jan Łukasiewicz.Accumulate values in one direction (push each onto a stack) while applying operations in the other. (discarding the values and replacing them with the result)  For example:Algebra: (24 + 6) / (3 * sqrt(25))
          ...becomes the sequence...RPN: 24 6 + 3 25 sqrt * /
Where each value gets pushed onto the stack and each operator processes and discards its arguments and replaces them with the result of the operation.So the above RPN is evaluated as...push the value 24 onto a stack
push the value 6 onto that stack
add the top two values (24 and 6) and replace them on the stack with the result (30)
push the value 3 onto the stack
push the value 25 onto the stack
take the sqrt of the top value (25) and replace it on the stack with that on the stack (5)
multiply the top two values (3 and 5) and replace them on the stack with the result (15)
divide the top value on the stack (15) into the value beneath it (30), replacing them on the stack with the result (2)
Now, all that's left on the stack is the answer. (2)You can use RPN to eliminate all grouping operators. In fact that is how a compiler deals with the evaluation of math expressions. If you want to code this up, search for Recursive Descent Parser - a very simple algorithm that makes this easy.  Okay, the OP has now updated his question with an example that appears to show that he/she is not looking just for a solution that eliminates the brackets/parenthesis but, instead, is looking for an expansion of terms.  If that is indeed the question, it looks like Richard Morris has provided a good solution.

Help! I need to remove the brackets and simplify each the following:?

2p(p-3q)
2p(squared)-6pq

4-(3-2x)
4(-3+2x)
-12+8x

(y+4)(2y-1)
y(2y)+y(-1)+4(2y)+4(-1)
2y(squared)+(-y)+8y+(-4)
2y(squared)+7y-4

i dont know how to answer (t-3)

Math discontinuity brackets?

ok the "hard" bracket [ means that the number at its end of the interval is included in the interval. The "soft" bracket ) means that the number is not included in the interval.

SO for [-1,0) your interval includes -1...... to 0 but does not include zero

for [-1,0] your interval includes -1..........0 so it does include zero

How can you use parentheses and brackets in [math]\LaTeX[/math]?

For parentheses and brackets, you can write[math]1^\text{st}[/math] Bracket:[math]\LaTeX[/math] code: \left( \frac{x}{y} \right) Output: [math]\left( \frac{x}{y} \right)[/math][math]2^\text{nd}[/math] Bracket:[math]\LaTeX[/math] code: \left\{ \frac{x}{y} \right\} Output:[math]\left\{ \frac{x}{y} \right\}[/math][math]3^\text{rd}[/math] Bracket:[math]\LaTeX[/math] code: \left[ \frac{x}{y} \right] Output: [math]\left[ \frac{x}{y} \right][/math]Besides,[math]\LaTeX[/math] code: \left< \frac{x}{y} \right> Output: [math]\left< \frac{x}{y} \right>[/math]** this < and > can be replaced by \langle and \rangle respectively.Those \left and \right commands are used to adjust the sizes automatically. But if you want to adjust their size explicitly, you follow this codes in this table below:[math]\begin{array}{|c|c} \LaTeX \,\text{Code} & \text{Output} \\ \hline \text{\big( \Big( \bigg( \Bigg(}\, - \text{\Bigg) \bigg) \Big) \big)} & \big( \Big( \bigg( \Bigg( - \Bigg) \bigg) \Big) \big) & \\ \text{\big\{ \Big\{ \bigg\{ \Bigg\{}\, - \text{\Bigg\} \bigg\} \Big\} \big\}} & \big\{ \Big\{ \bigg\{ \Bigg\{ - \Bigg\} \bigg\} \Big\} \big\} & \\ \text{\big[ \Big[ \bigg[ \Bigg[}\, - \text{\Bigg] \bigg] \Big] \big]} & \big[ \Big[ \bigg[ \Bigg[ - \Bigg] \bigg] \Big] \big] & \\ \text{\big< \Big< \bigg< \Bigg<}\, - \text{\Bigg> \bigg> \Big> \big>} & \big< \Big< \bigg< \Bigg< - \Bigg> \bigg> \Big> \big> & \\ \end{array}[/math]Moreover,\tiny )
\Tiny \}
\scriptsize ]
\small )
\normalsize \}
\large ]
\Large )
\LARGE \}
\huge ]
\Huge )
For more [math]\LaTeX[/math] you can visit this links:An introduction to beautiful math on QuoraShareLaTeX, Online LaTeX EditorGood luck.

Grade 9 math help?? algebra?

Thats not correct.
=(4x^2+2xy-7y^2) - (-5x^2+7xy-9y^2) - (4x^2+3xy+2y^2)
= 4x^2+2xy-7y^2 + 5x^2 - 7xy + 9y^2 - 4x^2 - 3xy - 2y^2
= 4x^2-4x^2+5x^2+2xy-7xy-3xy-7y^2-2y^2+ 9y^2
= 5x^2 - 8xy -9y^2+9y^2
= 5x^2 - 8xy

Expand and simplifying maths help?

To clarify the first answer a bit: it's 3a + 24 or 3(a + 8)

5a - 4 (3a - 1) Multiply Out Brackets?

I'm trying to complete 5a - 4 (3a - 1) by multiplying out the brackets. The answer is -7a + 4 according to the book however I'm really struggling to see how I would get there. I can see that the +4 could come from the multiplication of -4 and -1 however am I missing something with 5a and 3a? Is the book wrong?

Thanks.

TRENDING NEWS