answersLogoWhite

0


Best Answer

There is no answer because there is no specific question.

The expression can be factorised, or if given v or q it can be evaluated.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the answer to v2 plus 3v plus 9vq plus 27q?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is 3v plus 15v - 11v2 - 14v plus 5v2 plus 8v3 - 4v3?

Assuming that the numbers immediately succeeding each "v" in the expression are intended to be exponents, in this type of problem only the coefficients of those terms with the same exponents can be added. Therefore in the sum, the coefficient of "v" will be (3 + 15 - 14) = 4; the coefficient of "v2" will be (-11 + 5) = -6; and the coefficient of "v3" will be (8 - 4) = 4. The final answer is therefore 4 v3 - 6 v2 + 4 v.


How do you factor vfcube plus 8v?

If that's v3 + 8v, the answer is v(v2 + 8)


What is t plus v squared?

All that can be said, based on the available information is: t + v2


Which binomial is a factor of v squared plus 36v plus 99?

v2+36v+99 = (v+3)(v+33) when factored


A 13 kg asteroid is traveling with velocity 110 meters s when it breaks into 3 equal pieces one piece is left at rest and the second continues at the same velocity what was the energy of the explosion?

The total initial energy = the asteroid kienetic energy = 1/2 m v2 -----------> (1) The total energy after disintegration = (first mass energy=0) + 1/2 (1/3 m) v2 + K.E. of the third piece + disintegration energy ------------> (2) K.E. of the third piece = 1/2 (1/3 m)v'2 From conservation of energy, the two equations (1) and (2) are equal, then 1/2 m v2 =1/2 (1/3 m) v2 + 1/2 (1/3 m)v'2+ disintegration energy Then, the disintegration energy = 1/2 m [v2 -1/3v2-1/3v'2] --------> (3) * still need to find v' using the conservation of momentum mv= 0+1/3mv+1/3mv' then v'= 3v- v= 2v substitute in equation (3) Then, the disintegration energy = 1/2 m [v2 -1/3v2-1/3 (2v)2 ] ?


What has the author HISTORIA AUGUSTA V2 written?

HISTORIA AUGUSTA V2. has written: 'HISTORIA AUGUSTA V2'


How Do You Rearrange the formula a v2 r for v.?

If a = v^2/r, then v = plus or minus the square root of a times r


What is the LCM of v2 and v2-9?

v4 - 9v2


When Was v2 rocket invented?

Wernher Van Braun invted the v2


Where do you buy Robosapien v2?

You could buy a Robosapien v2 in ebay


What resistors are required to convert 12volts Dc to 3 volts dc?

In general terms, the voltage across a resistor can be calculated by ohms law: V = I . R voltage across the resistor = current through the resistor multiplied by the value of the resistor. So, if the resistor has a value of 100 ohms and the current flowing through the resistor is 10mA then the voltage across the resistor will be 100 x 0.01 = 1 volt. If the current flows through two resistors connected in series, the voltage will be split over the two resistors according to their resistance. V = V1+V2 = I . R1 + I . R2 You want V2/(V1+V2)=3V/12V Using Ohm's law for each voltage: V2/(V1+V2) = I . R2 / (I . R1 + I . R2) = R2 / (R1+R2) You see that the answer to your question is: Any combination of resistors will do the job, provided that R2/(R1+R2) = 3V/12V e.g. R2=3Ohm and R1=8Ohm or R2=3000Ohm and R1=8000Ohm Depending on your choice, you will get a different current flowing. In the real world you might need to control the current flowing into your circuit. For example if the device to be powered is a 3V LED and the required current is 15mA then we can calculate as follows: 12V - 3V = 9V. 9V = 0.015A x R Therefore R = 9V / 0.015A Therefore R = 600 ohms. However, in real life this is usually a terrible way to control voltage for several reasons. First, because the current in the most circuits is not constant (it would be constant for an LED but not for most gadgets). Second, this method wastes energy heating the resistor. Third, it is often not possible to find a resistor of exactly the right value. So, in real life this problem is usually solved by using a "voltage regulator" which is a simple integrated circuit (often with just three legs).


C plus plus program to negate 2 values in class using unary minus operator?

#include<iostream> #include<cassert> struct A { int val1; int val2; A (int v1, int v2): val1 (v1), val2 (v2) {} A operator- () const { return A (-val1, -val2); } }; int main() { A a (12, -42); A b = -a; assert (b.val1 42); }