(C)
Step-by-step explanation:
The sum of angles a and b is 180°, which make the two supplementary angles.
Which expression corresponds to this graph?
Answer: Choice A
The number line graph is visually showing every number that is 19 or smaller; hence [tex]x \le 19[/tex]
Note the use of a closed or filled in circle at the endpoint (in contrast to an open circle). This indicates we are including the endpoint 19 as part of the solution set, and that's why we go for "or equal to" as part of the inequality sign.
Jake has corn growing on 66 2/3% of his 330 acres. How many acres are being used for corn?
on 220 acres
66 ⅔% is just ⅔ of 100%
330 * 2 / 3 = 220
How much would $150 invested at 8% interest compounded continuously be worth after 17 years? Round your answer to the nearest cent.
A(t)= P•e^rt
A. $471.39
B. $555.00
C. $354.00
D. $584.43
9514 1404 393
Answer:
D. $584.43
Step-by-step explanation:
Using the given formula with the given values, we find ...
A(17) = 150·e^(0.08·17) = 584.43
6 less than six times a number is 42 what is the number
Answer:
x = 8
General Formulas and Concepts:
Pre-Algebra
Equality Properties
Multiplication Property of Equality Division Property of Equality Addition Property of Equality Subtraction Property of EqualityStep-by-step explanation:
Step 1: Define
Identify
6x - 6 = 42
Step 2: Solve for x
[Addition Property of Equality] Add 6 on both sides: 6x = 48[Division Property of Equality] Divide 6 on both sides: x = 8Answer: -6
Step-by-step explanation:
We can create an equation based on the info given.
6-6x=42 Now you solve for x, the unknown number.
-6 -6 Subtract 6 on both sides
-6x=36
/-6 /-6 Divide by -6 on both sides
x=-6
The number is -6.
1. Đường kính của một loại trục máy là một đại lượng ngẫu nhiên có phân phối chuẩn N (μ = 250mm, σ2 = 25mm2). Trục máy được gọi là hợp quy cách nếu đường kính từ 245mm đến 255mm. Cho máy sản xuất 100 trục. Tính xác suất để:
a. Có 50 trục hợp quy cách.
b. Có không quá 80 trục hợp quy cách
Answer:
cannot understand the language man
but please follow
A copy machine makes 36 copies per minute How many copies does it make in 3 minutes and 45 seconds
Step-by-step explanation:
Hope it is helpful.
Thank you.
what is the largest whole number
[tex]\large{\underline {\underline {\pmb {\sf {\pink{Answer:}}}}}}[/tex]
There is no 'largest' whole number.Answer:
The largest whole number is the approximate of positive infinity ( to the nearest ones digit )
What should you multiply the top equation by so that yis eliminated when the equations are added? | 3x – y = -2 15x + 2y = 15 A. 4 B. -2 C. 2 D. -1
Answer:
c. 2
Step-by-step explanation:
2 (3x – y = -2) 6x - 2y = -4
6x - 2y = -4
What is the value of m in the figure below? If necessary, round your answer to
the nearest tenth of a unit.
A. 18
B. 13.2
C. 12.5
D. 7
First
[tex]\\ \sf\longmapsto BD^2=AD\times DC[/tex]
[tex]\\ \sf\longmapsto BD^2=18^2+7^2[/tex]
[tex]\\ \sf\longmapsto BD^2=324+49[/tex]
[tex]\\ \sf\longmapsto BD^2=363[/tex]
[tex]\\ \sf\longmapsto BD=\sqrt{363}[/tex]
[tex]\\ \sf\longmapsto BD=19.2[/tex]
Now
Using Pythagorean theorem
[tex]\\ \sf\longmapsto BD^2+CD^2=m^2[/tex]
[tex]\\ \sf\longmapsto m^2=7^2+19.2^2[/tex]
[tex]\\ \sf\longmapsto m^2=49+363[/tex]
[tex]\\ \sf\longmapsto m^2=412[/tex]
[tex]\\ \sf\longmapsto m=\sqrt{412}[/tex]
[tex]\\ \sf\longmapsto m=20.3[/tex]
Nearest value in options is 18
Hence option a is correct
Following are the published weights (in pounds) of all of the team members of Football Team A from a previous year.
177; 204; 211; 211; 232; 205; 185; 185; 178; 210; 206; 212; 184; 174;
185; 242; 188; 212; 215; 247; 241; 223; 220; 260; 245; 259; 278; 270;
280; 295; 275; 285; 290; 272; 273; 280; 285; 286; 200; 215; 185; 230;
250; 241; 190; 260; 250; 302; 265; 290; 276; 228; 265
Organize the data from smallest to largest value.
Part (a)
Find the median.
Part (b)
Find the first quartile. (Round your answer to one decimal place.)
Part (c)
Find the third quartile. (Round your answer to one decimal place.)
Part (d)
Construct a box plot of the data.
Answer:
im not sure but i do have a tip when you go to goo gle i want you to simplify your question (not what you asked on here) then copy your question as it is simple then search it on here because its slightly for others to understand
Step-by-step explanation:
.
please help me with this
please mark this answer as brainlist
g (x) = f ( x + 1).
graph
Q: EXPRESS IT IN THE FORM OF LINEAR EQUATION IN ONE VARIABLE:
•The ordinate of a point is thrice its abscissa.
Answer:
y = 3x
Step-by-step explanation:
abscissa is the x coordinate
ordinate is the y coordinate
y = 3x
Which expression is equivalent to RootIndex 4 StartRoot x Superscript 10 Baseline EndRoot?
Answer:x2.2
Step-by-step explanation:
write
the following numbers using Roman numerals 20
Step-by-step explanation:
xx is the Roman number of 20
c program to generate prime numbers from 1 to 100.Also count prime numbers.
Answer:
Step-by-step explanation:
#include <stdio.h>
int main()
{
int num1, num2, flag_var, i, j;
/* Ask user to input the from/to range
* like 1 to 100, 10 to 1000 etc.
*/
printf("Enter two range(input integer numbers only):");
//Store the range in variables using scanf
scanf("%d %d", &num1, &num2);
//Display prime numbers for input range
printf("Prime numbers from %d and %d are:\n", num1, num2);
for(i=num1+1; i<num2; ++i)
{
flag_var=0;
for(j=2; j<=i/2; ++j)
{
if(i%j==0)
{
flag_var=1;
break;
}
}
if(flag_var==0)
printf("%d\n",i);
}
return 0;
}
Please help!! The question is the image below VVV
Answers are also images after the picture.
Step-by-step explanation:
When adding two fractions with different bases (bottom numbers), we can use this function:
[tex]\frac{a}{b} + \frac{c}{d} = \frac{ad + cb}{bd}[/tex]
So, to apply this to the given question:
[tex]\frac{x+3}{x-6} +\frac{1}{x-2}[/tex]
= [tex]\frac{(x+3)(x-2)+(1)(x-6)}{(x-6)(x-2)}[/tex]
From the given answers, we see we don't need to simplify the resulting base number, which makes things a lot easier.
Multiply top using: (a + b)(c + d) = ac + ad + bc + bd= [tex]\frac{[(x*x) + (x*-2)+(3*x)+(3*-2)]+(x-6)}{(x-6)(x-2)}[/tex]
Simplify.= [tex]\frac{[x^2 -2x+3x-6]+(x-6)}{(x-6)(x-2)}[/tex]
Remove parentheses.= [tex]\frac{x^2 -2x+3x-6+x-6}{(x-6)(x-2)}[/tex]
Simplify again.= [tex]\frac{x^2 +2x-12}{(x-6)(x-2)}[/tex]
Now if we wanna be a little smart, we can see that from here, the only answer that has x^2 and something else, is A. But, just for show, lets factor.
Factor.= [tex]\frac{x(x+2)}{(x-6)(x-2)}[/tex]
Answer:
A) [tex]\frac{x(x+2)}{(x-6)(x-2)}[/tex]
HURRY PLEASE!!!!!
All of the following expressions are equal except ____. 1/4^3 4^2/4^5 4^5/4^2 4^-3
Answer:
4^5/4^2
Step-by-step explanation:
We know 1/a^b = a^-b
a^b/ a^c = a^(b-c)
1/4^3 = 4^-3
4^2/4^5 = 4^(2-5) = = 4^-3
4^5/4^2 = 4^(5-2) = 4^3
4^-3
Answer:
[tex]4^{5}/5^{2}[/tex] = not the same
Step-by-step explanation:
you have the equations
[tex]1/4^{3} = 0.015625\\\\4^{2}/4^{5} = 16/1024 = 0.015625\\\\4^{5}/4^{2} = 1024/16 = 65\\\\4^{-3} = 0.015625[/tex]
look at the question below in the image
Answer:
117.8
Step-by-step explanation:
Surface area of a cone = πrl+πr², where r = radius and l = slant height
πrl
= π×3×9.5+π×3²
= 75π/2
= 117.8 (rounded to the nearest tenth)
1. Coach Jensson wants to celebrate the final win of the
school's baseball season with a trip to the local fast food
place. The team buys 22 delicious tacos and 17 orders
of savory nachos for $71.05. A few of the players are still
hungry, so the coach buys 10 more tacos and 5 more
orders of nachos for $27.25. If you don't consider tax,
what is the price of a taco and the price of an
order of nachos ?
What is the solution of log(4-3) = log(17-41)?
O4
O 5
O 15
O 20
Explanation:
The rule is that if log(A) = log(B), then A = B
Using this idea, we can then say,
log(t - 3) = log(17 - 4t)
t - 3 = 17 - 4t
t+4t = 17+3
5t = 20
t = 20/5
t = 4
The solution to the logarithmic equation is t = 5
What is Logarithm?The power to which a number must be increased in order to obtain another number is known as the logarithm. A power is the opposite of a logarithm. In other words, if we subtract an exponentiation from a number by taking its logarithm
The properties of Logarithm are :
log A + log B = log AB
log A − log B = log A/B
log Aⁿ = n log A
Given data ,
Let the logarithmic equation be represented as A
Now , the value of A is
log ( t - 3 ) = log (17 - 3t ) be equation (1)
On simplifying , we get
The bases of the logarithm are equal
So , the values are equal and therefore
t - 3 = 17 - 3t
Adding 3t on both sides , we get
4t - 3 = 17
Adding 3 on both sides , we get
4t = 20
Divide by 4 on both sides , we get
t = 20 / 4
t = 5
Therefore , the value of t is 5
Hence , the logarithmic equation is solved
To learn more about logarithm click :
https://brainly.com/question/12049968
#SPJ7
Can someone work out this problem for me because I do not get it and it is due tomorrow for homework? 83.971 + 10.9 PLSS HELPPPP MEE!!!!
9514 1404 393
Answer:
94.9
Step-by-step explanation:
It is straightforward addition to find the sum of the two numbers to be 94.871. Perhaps you're interested in rounding to the appropriate precision.
Here, the number with the fewest digits right of the decimal point is 10.9. In order to round the addition result appropriately, that "exact" result must be rounded so it has this same number of digits to the right of the decimal point (1 digit).
94.871 ≈ 94.9
_____
Additional comment
When you're asked to round a sum (or difference) to the appropriate precision, always first compute the exact result using the full precision of all contributors. Then determine the contributor with the least precision (least significant digit is farthest to the left), and round the result to that same precision.
A common inhabitant of human intestines is the bacterium Escherichia coli, named after the German pediatrician Theodor Escherich, who identified it in 1885. A cell of this bacterium in a nutrient-broth medium divides into two cells every 20 minutes. The initial population of a culture is 50 cells.
Required:
a. Find the relative growth rate.
b. Find an expression for the number of cells after t hours.
c. Find the rate of growth after 6 hours. (Round your answer to the nearest integer.)
d. Find the number of cells after 6 hours.
Answer:
a. Relative Growth rate = 10% (6/60 * 100)
b. Number of cells after t hours = 50 * 1.1^t
c. Rate of growth after 6 hours = 77.2% (1.1⁶ - 1)
d. The number of cells after 6 hours is
= 89 cells
Step-by-step explanation:
A cell divides into two cells every 20 minutes
In one hour, the cell will divide into 60/20 * 2 = 6 cells
Each cell growth 6 cells per hour
Initial population of a culture = 50 cells
t = time in hours
a. Relative Growth rate = 10% (6/60 * 100)
b. Number of cells after t hours = 50 * 1.1^t
c. Rate of growth after 6 hours = 77.2% (1.1⁶ - 1)
d. The number of cells after 6 hours = initial population * growth factor
= 50 * 1.772
= 88.6
= 89 cells
Determine the indicated term in the following arithmetic sequences.
1.) a subscript 5: {2, 5, 8, ...}
2.) a subscript 20: {4, 8, 12, ...}
3.) a subscript 18: {0,20,40,60, ...}
Answer:
[tex]a_5= 14[/tex]
[tex]a_{20}= 80[/tex]
[tex]a_{18}= 340[/tex]
Step-by-step explanation:
Solving (a):
We have:
[tex]a_1=2[/tex] --- first term
[tex]d = 5 -2 = 3[/tex] common difference
The 5h term is:
[tex]a_n= a_1 + (n - 1)d[/tex]
[tex]a_5= 2+ (5 - 1)*3[/tex]
[tex]a_5= 14[/tex]
Solving (b):
We have:
[tex]a_1 = 4[/tex] --- first term
[tex]d = 8 -4 = 4[/tex] common difference
The 20h term is:
[tex]a_n= a_1 + (n - 1)d[/tex]
[tex]a_{20}= 4+ (20 - 1)*4[/tex]
[tex]a_{20}= 80[/tex]
Solving (c):
We have:
[tex]a_1 = 0[/tex] --- first term
[tex]d = 20 -0 = 20[/tex] common difference
The 18th term is:
[tex]a_n= a_1 + (n - 1)d[/tex]
[tex]a_{18}= 0+ (18 - 1)*20[/tex]
[tex]a_{18}= 340[/tex]
Which expression represents the perimeter of the rectangle above? . 6x + 3. 10x + 6. 8x² + 6x. 12x + 6
There is no any image of rectangle
Write six hundred twelve thousand, three hundred in the place-value chart. Then write the number in expanded
Answer:
612,300
600,000
10,000
2,000
300
00
0
Find the missing segment in the image below
Answer: Missing segment = 45
Step-by-step explanation:
Concept:
Here, we need to know the idea of a similar triangle, ratio, and cross-multiplication.
In similar triangles, one can be obtained from the other by uniformly scaling (enlarging or reducing), possibly with additional translation, rotation and reflection. If two objects are similar, each is congruent to the result of a particular uniform scaling of the other.
A ratio is a quantitative relation between two amounts showing the number of times one value contains or is contained within the other.
Cross-multiplication means multiplying the numerator of each fraction by the other's denominator or the other way round.
If you are still confused, please refer to the attachment below for a graphical explanation.
Solve:
Let x be the length of missing segment
Step One: write the proportion ratio
56 / 56 + 24 = 105 / 105 + x
Step Two: Cross-multiplication
56 (105 + x) = 105 ( 56 + 24)
Step Three: Simplify parenthesis and expand it
56 ( 105 + x) = 105 (80)
5880 + 56x = 8400
Step Four: Subtract 5880 on both sides
5880 + 56x - 5880 = 8400 - 5880
56x = 2520
Step Five: Divide 56 on both sides
56x / 56 = 2520 / 56
x = 45
Hope this helps!! :)
Please let me know if you have any questions
I NEED HELP PLEASE! Can someone help me with the last two red boxes please? The rest of the question is for reference. Thank you for your time!
Answer:
I think you can go with:
The margin of error is equal to half the width of the entire confidence interval.
so try .74 ± [tex]\frac{.032}{2}[/tex] = [ .724 , .756] as the confidence interval
Step-by-step explanation:
We are given a jar full of thousands of red and blue marbles. We want to estimate the unknown proportion pof red marbles in the jar. To do this, we randomly draw 100 marbles and count reds: it so happens we drew 45 reds. Enter values in decimal form, rounded to four decimal places (or more).
We estimate the proportion of reds in the jar to be
Attach a give-or-take value to this estimate. (That is, estimate the standard error.)
For a 96% confidence interval, about how many standard errors should be added to and subtracted from the estimate?
Set up an approximate 96% confidence interval for the unknown proportion of reds in the jar.
Answer:
(0.3478, 0.5522)
Step-by-step explanation:
Given:
Total number of red marbles, x = 45
Total number of marbles, n = 100
Phat = x / n = 45 / 100 = 0.45
The confidence interval, C.I is given by :
Phat ± Zcritical * standard error
Phat ± Zcritical * √Phat(1 - Phat) / n
Zcritical at 96% = 2.0537
The standard error = √Phat(1 - Phat) / n
S.E = √(0.45 * 0.55) / 100 = 0.0497493
C.I = 0.45 ± (2.0537 * 0.0497493)
C.I = 0.45 ± 0.10217013741
C. I = (0.3478, 0.5522)
1. Plot the following points by hand or using an online graphing calculator. What is the function that best fits the points?
(0, 3), (1, 6), (2, 12), (3, 24)
•Linear
•Exponential
•Quadratic