Jdnsjaiajiajsiiaiaia ajjakskskks
Answer:
14 more flower would bloom if 21 more tulip bulb is planted.
Step-by-step explanation:
Given ratio for tulip bulbs and flowers is 15:10.
Now, finding number of flower to bloom if 21 tulip bulb are planted.
Assume if 21 tulip bulbs are planted then number of flower would bloom be"x"
ratio given: 
Cross multiplying the ratio to get:
⇒x= 
∴
Hence, 14 flowers would bloom if 21 tulip bulb are planted.
If total tulip bulb is
, then
would bloom.
Hey there!!
Given equation :
... 2 ( x - ( 3 + 2x ) + 9 ) = 3x - 8
Using the distributive property.
... 2 ( x - 3 - 2x + 9 ) = 3x - 8
... 2 ( -x + 6 ) = 3x - 8
Using the distributive property.
... -2x + 12 = 3x - 8
Subtracting 12 on both sides.
... -2x = 3x - 8 - 12
... -2x = 3x - 20
Subtracting 3x on both sides.
... -2x - 3x = -20
... -5x = -20
Dividing by -5 on both sides.
... x = -20 / -5
... x = 4
<em>Hence, the answer is 4. </em>
Hope my answer helps!
Answer:
Y=(-x/2)-3
Step-by-step explanation:
You have two points:
(0,-3) and (-4,-1)
The formula of line trough two points is:
(Y-y1)/(y2-y1)=(x-x1)/(x2-x1)
So put these two point like (x1,y1) and (x2,y2) you will get
(Y+3)/(-1+3)=(x-0)/(-4-0)
Y+3=2x/(-4)
Y=-x/2-3
Answer:
Step-by-step explanation:
programs can be written in multiply languages. for this solution I'll be writing in C++.
#include<iostream> // this is called the preprocessor definition
using namespace std;
int main() //the main function
{
int num, product; //declaration of the variables
cout << "enter the whole number";
cin >> num;
product = num * 12;
cout << product; // displaying the final results
return 0;
}