Answer:
x = 1
Step-by-step explanation:
Since the triangles are congruent then AB ≡ DE , that is
DE = AB
5x - 4 = 2x - 1 ( subtract 2x from both sides )
3x - 4 = - 1 ( add 4 to both sides )
3x = 3 ( divide both sides by 3 )
x = 1
a rectangular parking lot is 67.5 ft wide and 148 ft long. what is the area of the parking lot in square meters?
The area of the rectangular parking lot is 929.03 square meters.
Use the formula for the area of a rectangle to calculate the area of the rectangular parking lot, which is given as:
Area = length × width
We know that the parking lot is 67.5 ft wide and 148 ft long, the area can be calculated as follows:
Area = 67.5 ft × 148 f
t= 9990 sq. ft
However, the question asks for the area in square meters, so we need to convert square feet to square meters. 1 square foot is equal to 0.092903 square meters, so we can use this conversion factor to convert square feet to square meters.
Area in square meters = Area in square feet × 0.092903
= 9990 sq. ft × 0.092903
= 929.03 sq meters
Therefore, the area is 929.03 square meters.
Learn more about rectangular https://brainly.com/question/32444543
#SPJ11
when a has linearly independent columns and a = qr is a qr factorization, then the columns of q form an orthonormal basis for the column space of a.
The given statement exists true. A matrix is broken down into orthogonal (Q) and upper triangular (R) matrices in a process known as QR decomposition (factorization).
What is meant by QR factorization?A matrix can be expressed as the union of two distinct matrices, Q and R, using the QR matrix decomposition. R is a square upper/right triangular matrix and Q is an orthogonal matrix. R is also invertible because it is square and doesn't have zeros in its diagonal entries.
A matrix is broken down into orthogonal (Q) and upper triangular (R) matrices in a process known as QR decomposition (factorization). Finding eigenvalues and solving linear least squares problems both use QR factorization.
A = QR. Be aware that the QR-factorization of a rectangular matrix A is sometimes understood with Q square and R rectangular rather than Q rectangular and R square, as with the MATLAB command qr.
To learn more about QR factorization refer to:
https://brainly.com/question/22767840
#SPJ4
Solve the given initial-value problem. 2y'' + 3y' − 2y = 10x2 − 8x − 13, y(0) = 0, y'(0) = 0
The general solution to the differential equation is y(x) = (5/2)x^3 - (4/3)x^2 + (1/2)x + C1e^(-x) + C2e^(-2x).
To solve this initial value problem, we need to find the general solution to the differential equation and then use the initial conditions to find the particular solution.
The characteristic equation is r^2 + 3r - 2 = 0, which has two distinct real roots of r1 = -2 and r2 = -1.
The general solution to the differential equation is y(x) = (5/2)x^3 - (4/3)x^2 + (1/2)x + C1e^(-x) + C2e^(-2x)
Now we can use the initial conditions y(0) = 0 and y'(0) = 0 to find the values of C1 and C2.
y(0) = 0 = (5/2) * 0^3 - (4/3) * 0^2 + (1/2) * 0 + C1e^(0) + C2e^(0)
y'(0) = 0 = 5x^2 - (8/3)x + (1/2) + C1e^(-x) - C2e^(-2x)
Solving these equations, we find that C1 = 0 and C2 = 0, so the particular solution to the initial value problem is y(x) = (5/2)x^3 - (4/3)x^2 + (1/2)x.
This method is the standard way to solve Initial value problems for linear homogeneous differential equations with constant coefficients. It relies on finding the characteristic equation, and the general solution of the differential equation. Then we use the initial conditions to find the particular solution.
Learn more about initial value problem here:
https://brainly.com/question/17449917
#SPJ4
Answer please. Explanation thank you, you don’t have to explain if you don’t want to. Please answer
Using pencil and paper, construct a truth table to determine whether the following pair of symbolized statements are logically equivalent, contradictory, consistent, or inconsistent. N (AVE) A (EVN)First determine whether the pairs of propositions are logically equivalent or contradictory.Then determine if these statements are consistent or inconsistent. If these statements are logically equivalent or contradictory leave the second choice black
To construct a truth table, we need to list all possible combinations of truth values for the propositions N and A, and then evaluate the truth value of each compound proposition N (AVE) A (EVN) for each combination of truth values. Here is the truth table:
How to construct the truth table?N A N (AVE) A (EVN)
T T F
T F T
F T T
F F F
In the truth table, T stands for true and F stands for false. The first column represents the truth value of proposition N, and the second column represents the truth value of proposition A. The third column represents the truth value of the compound proposition N (AVE) A (EVN).
To determine whether the pair of propositions are logically equivalent or contradictory, we can compare the truth values of the compound proposition for each row. We see that the compound proposition is true in rows 2 and 3, and false in rows 1 and 4. Therefore, the pair of propositions are not logically equivalent, and they are not contradictory.
To determine if the statements are consistent or inconsistent, we need to check if there is at least one row in which both propositions are true. We see that there are two rows (2 and 3) in which both propositions are true. Therefore, the statements are consistent.
to know more about propositions
brainly.com/question/14789062
#SPJ1
The sixth-graders at Barbara's school got to choose between a field trip to a museum and a field trip to a factory. 39 sixth-graders picked the museum and 26 sixth-graders picked the factory. What percentage of the sixth-graders picked the museum
Answer: 60%
Step-by-step explanation:
Sixth-graders that picked the museum = 39
Sixth-graders that picked the factory = 26
Total number of sixth graders = 39 + 26 = 65
Therefore, the percentage of the sixth-graders that picked the museum would be:
= Sixth-graders that picked the museum / Total number of sixth graders × 100
= 39/65 × 100
= 60%
what type of parameter requires that the argument used to call the method must have an assigned value?
A "required parameter" requires an assigned value for the argument used to call the method, while "optional parameters" do not need to be included in the method call and have a default value assigned to them.
The type of parameter that requires that the argument used to call the method must have an assigned value is a "required parameter".
Required parameters are parameters that must be included in the method call, and the argument passed for the required parameter must have a value assigned to it. If a required parameter is not included in the method call, or if the argument passed for the required parameter does not have a value assigned to it, an error will be thrown.
In contrast, there are also optional parameters, which are parameters that do not need to be included in the method call. If an optional parameter is not included in the method call, the method will use a default value assigned to the parameter.
In many programming languages, the syntax for specifying required and optional parameters in a method or function call is specified using different symbols, such as parentheses or square brackets.
Learn more about programming languages here:
https://brainly.com/question/22695184
#SPJ4
Leila wants to rent a boat and spend at most $93. The boat costs $8 per hour, and Leila has a discount coupon for $3 off. What are the possible numbers of
hours Leila could rent the boat?
Use t for the number of hours.
Write your answer as an inequality solved for t.
Answer:
0 ≤ t ≤ 18
Step-by-step explanation:
The cost of renting the boat without any discount is $8 per hour. However, Leila has a discount coupon for $3 off, so the effective cost per hour would be $8 - $3 = $5.
Let's assume Leila rents the boat for t hours. The total cost of renting the boat for t hours would be $5 multiplied by t, which is 5t.
According to the problem, Leila wants to spend at most $93. Therefore, we can set up the following inequality:
5t ≤ 93
This inequality represents the condition that the total cost of renting the boat (5t) should be less than or equal to $93.
Simplifying the inequality:
5t ≤ 93
Dividing both sides by 5 (since the coefficient of t is 5):
t ≤ 93/5
t ≤ 18.6
Since we cannot rent the boat for a fraction of an hour, we can round down the decimal value to the nearest whole number:
t ≤ 18
0 ≤ t ≤ 18
Answer: 0≤t≤12
Step-by-step explanation:
(I’m not sure if it’s 5 dollars off per hour, or total, but here’s what I did!)
If Leila has a $3 coupon, than she can spend +$3 because when you get a coupon, you can spend more, so 93+3 is equal to 96, now we just divide by 8 (because a boat costs $8 per hour) and we get 96/8=12.
Then, in inequality form it’s t≤12, because she can rent the boat for at most 12 hours, you could also do 0≤t≤12, because you can’t rent it for a negative amount of time, but either works.
A student gets 9 out of 15 problems correct on a homework assignment. What percent of the assignment did the student get incorrect? Enter your answer in the box.
Answer:
If he got 9 out of 15 correct, he got 6 problems incorrect.
6/15 is incorrect
6/15 × 100
40 % is your answer
Answer:
40% are incorrect
Step-by-step explanation:
If 9 are correct then 15-9 = 6
6 are incorrect
6/15 = 2/5
Change to a percent
2/5 *20/20 = 40/100
Percent means out of 100
40% are incorrect
If you had money in a savings account earning 9% interest per year, how much would you make in interest on a deposit of $60.00 over two years?
The amount of interest earned on a deposit of $60.00 at a rate of 9% per annum for 2 years is $108.
As per the given problem:
Amount deposited = $60.00
Interest rate per year = 9%
The formula for calculating the interest is given by:
Interest = (Principal × Rate × Time)/100
Where Principal is the initial amount invested or deposited
Rate is the percentage of interest that you earn per annum
Time is the duration for which you want to calculate the interest
Putting the values in the above formula, we get:
Interest = (60 × 9 × 2)/100= (108 × 1)/1= $108
So, the amount of interest earned on a deposit of $60.00 at a rate of 9% per annum for 2 years is $108.
for such more question on interest
https://brainly.com/question/25845758
#SPJ11
find and sketch the domain of the function. f(x, y) = ln(9 − x2 − 9y2)
To find the domain of the function f(x,y) = ln(9 - x^2 - 9y^2), we need to identify any values of x and y that would make the argument of the natural logarithm negative or equal to zero.
Since the natural logarithm of a non-positive number is undefined, we need to ensure that 9 - x^2 - 9y^2 > 0.
Rearranging this inequality, we get x^2 + 9y^2 < 9, which is the equation of an ellipse centered at the origin with semi-axes of length 3 and 1 in the x and y directions, respectively.
Therefore, the domain of the function is the interior of this ellipse, which we can sketch as follows:
(please imagine an ellipse centered at the origin with semi-axes of length 3 and 1 in the x and y directions, respectively, shaded in)
To find and sketch the domain of the function f(x, y) = ln(9 - x² - 9y²), we need to determine the values of x and y for which the function is defined.
Step 1: Identify the restrictions of the function.
For the natural logarithm function, ln(x), it is defined for x > 0. Therefore, the inside of the logarithm, 9 - x² - 9y², must be greater than 0.
Step 2: Solve for the domain.
9 - x² - 9y² > 0
Rearrange the inequality:
x² + 9y² < 9
Divide by 9:
x²/9 + y² < 1
This inequality represents the interior of an ellipse with semi-major axis a = 3 and semi-minor axis b = 1.
Step 3: Sketch the domain.
To sketch the domain, draw an ellipse centered at the origin (0, 0) with horizontal axis length 6 (from -3 to 3) and vertical axis length 2 (from -1 to 1). The domain includes all points inside the ellipse but does not include the boundary (the ellipse itself).
So, the domain of the function f(x, y) = ln(9 - x² - 9y²) is the interior of the ellipse with equation x²/9 + y² < 1.
Learn more about domain of function here: brainly.in/question/1221468
#SPJ11
construct a box plot from the given data. diameters of cans in an assembly line: 5.7,5.6,5.1,5.4,5.2,5.6,5.7,5.3,5.8,5.2
The resulting box plot for the given data would show a box ranging from 5.2 to 5.7, with the median at 5.4.
A box plot, also known as a box-and-whisker plot, is a graphical representation of numerical data that displays the distribution of a dataset. It provides a visual summary of the minimum, first quartile, median, third quartile, and maximum values, as well as any outliers that may be present.
To construct a box plot from the given data (diameters of cans in an assembly line: 5.7, 5.6, 5.1, 5.4, 5.2, 5.6, 5.7, 5.3, 5.8, 5.2), follow these steps:
1. Sort the data in ascending order: 5.1, 5.2, 5.2, 5.3, 5.4, 5.6, 5.6, 5.7, 5.7, 5.8.
2. Find the median (middle value) of the dataset, which is 5.4.
3. Determine the first quartile (Q1), which is the median of the lower half of the data. In this case, it is the median of the numbers below 5.4: 5.2.
4. Find the third quartile (Q3), which is the median of the upper half of the data. In this case, it is the median of the numbers above 5.4: 5.7.
5. Calculate the interquartile range (IQR) by subtracting Q1 from Q3: 5.7 - 5.2 = 0.5.
6. Identify any outliers in the dataset. Outliers are values that fall below Q1 - 1.5 * IQR or above Q3 + 1.5 * IQR. In this case, there are no outliers.
7. Construct the box plot using a number line. Draw a box from Q1 to Q3, with a line inside representing the median. Add whiskers (lines) extending from the box to the minimum value (5.1) and the maximum value (5.8).
The resulting box plot for the given data would show a box ranging from 5.2 to 5.7, with the median at 5.4. The whiskers would extend from 5.1 to 5.8. This visual representation provides an overview of the distribution and key statistical measures of the diameters of cans in the assembly line.
To know more about box plot refer here:
https://brainly.com/question/30951920
#SPJ11
1 kilograms of pears cost as much as 1. 5 kilograms of apples. Alex paid $34. 20 for 4 kilograms of pears and 3 kilograms for apples. How much did 1 kilogram of pears cost?
The cost of 1 kilogram of pears is $5.70.
How determine the costThe cost of 1 kilogram of pears can be found by using the given information and setting up an equation. First, let's repeat the question: "1 kilogram of pears cost as much as 1.5 kilograms of apples. Alex paid $34.20 for 4 kilograms of pears and 3 kilograms for apples. How much did 1 kilogram of pears cost?"
Let's assign variables to the unknowns:
- P = cost of 1 kilogram of pears
- A = cost of 1 kilogram of apples
From the question, we know that:
- 1P = 1.5A - 4P + 3A = 34.20
Now, we can use substitution to solve for P.
1. Substitute 1.5A for P in the second equation: 4(1.5A) + 3A = 34.20
2. Simplify: 6A + 3A = 34.20
3. Combine like terms: 9A = 34.20
4. Solve for A: A = 34.20/9 A = 3.8
5. Substitute 3.8 for A in the first equation: 1P = 1.5(3.8)
6. Solve for P: P = 5.7
Learn more about determine cost at https://brainly.com/question/20534175
#SPJ11
Помогите пожалуйста сделать это задание новая тема не понимаю
Answer:
heyyy here's your answer hope it helps you
Step-by-step explanation:
1. 4a+7a=11a.
2.20y-6y=14y.
3.8m-8m=0.
4.9b+6=9b+3.
dr. anderson wants to know if annual income differs between college graduates and non-college graduates. he should use a(n)
Anderson should use a two-sample t-test to determine if there is a statistically significant difference in annual income between college graduates and non-college graduates.
A two-sample t-test is a type of inferential statistic used to compare the means of two independent groups. It is used to determine if the difference between the two groups is statistically significant.
In this case, Anderson would compare the mean annual income of college graduates to the mean annual income of non-college graduates. If the difference between the two means is statistically significant, then Anderson can conclude that there is a difference in annual income between college graduates and non-college graduates.
If the difference is not statistically significant, then Anderson can conclude that there is no difference in annual income between the two groups.
For more questions like Two-sample t-test click the link below:
https://brainly.com/question/15870238
#SPJ4
Using the diagram, determine which statements are true. Select all that apply. m∠1 = 50° m∠3 = (2x + x + 25)° m∠2 = (x + 25)° m∠1 + m∠2 + m∠3 = 180° 50 + 2x+ x + 25 = 180
Answer:
All of them are true except for the second one.
Step-by-step explanation:
Answers A, C, D, E
i had a dream of a cupcake tree, growing two booming cucakes every 11 hours for 33 hours
Answer:
you had a total of 6 cupcakes and your tree bloomed 3 times in those 33hours you can find the answer easily by adding 11+11+11 which equals 33 meaning your tree bloomed 3 times since it only blooms two cupcakes 3*2 is 6 so you have a total of 6 cupcakes unless you ate them
Step-by-step explanation:
The volume of a cube, in cubic centimeters, is given by the function V(x) = x^3. Write a new function for the volume of the cube with cubic millimeters as the units.
v(x)= ???x^3
answer choices: 10, 1000, 100, 10000,
The volume of the cube with a side length of 5 millimeters is 125,000 cubic millimeters. The new function for the volume of the cube with cubic millimeters as the unit is v(x) =
\(1000x^3\)
To convert from cubic centimeters to cubic millimeters, we need to multiply by 1000 (since 1 cubic centimeter = 1000 cubic millimeters). Therefore, the new function v(x) multiplies the original function V(x) by 1000.
For example, if we want to find the volume of a cube with a side length of 5 millimeters, we can use the new function v(x) as follows: v(5) =
\(1000(5^3)\)
= 1000(125)
= 125,000 cubic millimeters.
To convert a function from cubic centimeters to cubic millimeters, we need to multiply the function by 1000. The new function for the volume of a cube in cubic millimeters is v(x) =
\(1000x^3\)
Learn more about cubic centimeters here:
https://brainly.com/question/16670888
#SPJ4
Let X be the set {a + bi : a, b ∈ {1,..., 8}}. That is, X = { 1+i, 1+2i, ..., 1+8i, 2+i, ..., 8+8i }. Let R be the relation {(x, y) ∈ X² : |x| = |y|}. Here | | means the complex modulus, |a + bi| = √a² + b². You may assume that R is an equivalence relation. Write down the equivalence class [1+7i]R. Write the elements in increasing order of their real part (e.g. if you get the answer {3+i, 2 + 4i}, you should enter {2+4i, 3+i}.)
To find the equivalence class [1+7i]R, we need to determine all the elements in X that are related to 1+7i under the relation R, where R is defined as {(x, y) ∈ X² : |x| = |y|}.
First, let’s calculate the modulus of 1+7i:
|1+7i| = √(1² + 7²) = √(1 + 49) = √50 = 5√2
Now we need to find all complex numbers in X that have the same modulus, 5√2.
The complex numbers in X with the modulus 5√2 are:
• 2+2i
• 2+6i
• 6+2i
• 6+6i
Therefore, the equivalence class [1+7i]R is {2+2i, 2+6i, 6+2i, 6+6i}.
Writing the elements in increasing order of their real part, we have:
{2+2i, 2+6i, 6+2i, 6+6i}
Learn more about equivalence class here : brainly.com/question/30340680
#SPJ11
What is the equivalent expression to t+4+3-5t
Answer:
-4t + 7
Step-by-step explanation:
t + 4 + 3 - 5t = -4t + 7
Combine like terms
5 star, thank, and brainliest if helpful!
Problem 1
1. A green light blinks every 4 seconds and a yellow light blinks every 5 seconds. When will both lights blink at the same time?
:
2. A red light blinks every 12 seconds and a blue light blinks every 9 seconds. When will both lights blink at the same time?
:
3. Explain how to determine when 2 lights blink together.
:
Answer:
1) both lights will blink at the same time every 20 seconds
2)Both lights will blink at the same time every 36 seconds
3) How to determine when 2 lights will blink together is that you must find the least common factor (LCM) of both numbers and when both hit the same number then that is when both lights blink at the same time.
Step-by-step explanation:
For example for number 1 we have 4 and 5 seconds when the lights blink
4: 4, 8, 12, 16, 20...
5: 5, 10, 15, 20...
we see that the LCM factor is 20 and that is when both lights will hit at the same time.
Can someone please help me with this?
Answer:
x = 2/3
Step-by-step explanation:
-3x + 4 = 2
-3x = -2
x = 2/3
y = 2
(plug it into original equation)
(2/3. 2)
The points J(-8,9) and K(-2,-5) are endpoints of a diameter of circle C. Which equation represents circle C?
A.
(x − 5)2 + (y + 2)2 = 58
B.
(x − 5)2 + (y + 2)2 = 232
C.
(x + 5)2 + (y − 2)2 = 58
D.
(x + 5)2 + (y − 2)2 = 232
Answer:
The Answer is C
Step-by-step explanation:
The center of circle C is the midpoint of the diameter JK. We can find the coordinates of the center using the midpoint formula:
x-coordinate of center = (x-coordinate of J + x-coordinate of K)/2 = (-8 - 2)/2 = -5
y-coordinate of center = (y-coordinate of J + y-coordinate of K)/2 = (9 - 5)/2 = 2
So, the center of circle C is (-5, 2). The radius of the circle is half the distance between J and K:
radius = 1/2 * √[(x-coordinate of K - x-coordinate of J)2 + (y-coordinate of K - y-coordinate of J)2]
radius = 1/2 * √[(-2 - (-8))2 + (-5 - 9)2] = √58
Using the standard form equation of a circle with center (h,k) and radius r:
(x - h)2 + (y - k)2 = r2
Substituting the values for h, k, and r, we get:
(x + 5)2 + (y - 2)2 = 58
So, the equation that represents circle C is option C: (x + 5)2 + (y - 2)2 = 58.
The product of two numbers is 814. The sum is fifty-nine.
What is the difference of these two numbers?
Answer:
15
Step-by-step explanation:
X*Y=814
X+Y=59
X=814÷Y
X=59-Y
814/Y=59-Y
814=(59-Y)*Y
814=59Y-Y²
Y=22
X+22=59
X=37
37-22
15
Jared has mowed 2/5 of the yard. Abby says that Jared has mowed 4/6 of the yard. Is Abby correct? Explain
Answer:
No. Abby is incorrect.
Step-by-step explanation:
2/5 isn't equivalent to 4/6.
You can tell by looking at a fraction bar. AND you can just multiply 2 x 2, then 5 x 2. It would be 4/10. Abby could have said 4/10.
Abby is not correct with his calculations.
What are algebraic expressions?In mathematics, an expression or mathematical expression is a finite combination of symbols that is well-formed according to rules that depend on the context.Mathematical symbols can designate numbers (constants), variables, operations, functions, brackets, punctuation, and grouping to help determine order of operations and other aspects of logical syntax.Given is that Jared has mowed 2/5 of the yard.
Equivalent ratios are the ratios with that represent same situation but are different when written in the form of numbers. For example - 2/5 is same as (2 x 2/5 x 2) = (4/10). So, we can say that : 2/5 is same as 4/10
Jared has mowed 2/5 of the yard. Abby says that Jared has mowed 4/6 of the yard. For this to be true -
2/5 should be equal to 4/6
2/5 = 4/6
2/5 = 2/3
which is false.
Therefore, Abby is not correct with his calculations.
To solve more questions on algebraic expressions, visit the link below -
brainly.com/question/1041084
#SPJ5
Please help me with this
Answer:
a. E = {1, 2, 3, 4, 5, 6, 7, 8}b. A ∩ B = {2, 3}c. A ∪ B = {1, 2, 3, 4, 5, 7, 8}Step-by-step explanation:
Locate the designated space on the diagram and list all the numbers in it.
a. E = {1, 2, 3, 4, 5, 6, 7, 8} . . . . all numbers in the rectangle
__
b. A ∩ B = {2, 3} . . . . where the circles overlap
__
c. A ∪ B = {1, 2, 3, 4, 5, 7, 8} . . . . only 6 is outside the circles
2-Solve the following question using the simplex
method:
Max 12x1+8×2
S.t
5x1+2×2 <=150
2x1+3×2 <=100
4x1+2×2 <=80
XI,×2 >=0
The solution of the system of equation by using the simplex method is 360.
To solve this problem using the simplex method, we first need to convert it into standard form. This involves introducing slack variables to convert the inequalities into equations, and expressing all variables in terms of non-negative values.
We can introduce slack variables s1, s2, and s3 to convert the constraints into equations:
5x1+2x2+s1=150
2x1+3x2+s2=100
4x1+2x2+s3=80
Next, we express all variables in terms of non-negative values by writing x1, x2, s1, s2, and s3 as the differences of two non-negative variables, say x1 = x1'+x1'' and so on. Then, we substitute these expressions in the objective function and express it as a linear combination of the non-negative variables.
The resulting standard form of the problem is:
Maximize 12x1'+12x1''+8x2'+8x2''
Subject to:
5x1'+5x1''+2x2'+2x2''+s1 = 150
2x1'+2x1''+3x2'+3x2''+s2 = 100
4x1'+4x1''+2x2'+2x2''+s3 = 80
x1',x1'',x2',x2'',s1,s2,s3 >= 0
The simplex method begins by identifying an initial feasible solution. This can be done by setting all non-basic variables to zero, and solving the resulting system of equations for the basic variables. In this case, we can set x1'=150/5=30, x2'=0, s1=0, s2=100/3=33.33, s3=80/2=40.
We can now calculate the values of the objective function at this initial solution:
12x1'+12x1''+8x2'+8x2'' = 12(30)+12(0)+8(0)+8(0) = 360
To know more about simplex method here
https://brainly.com/question/30387091
#SPJ4
17081 + 8391
the answer. I need help plz
ᵇᵗʷ you get all mah points
Answer:25,472
Step-by-step explanation:
Answer:
the awnser od easy ots 25,472
2. On vacation, Katelyn wanted to have her hair braided in multiple braids to cover her head. The beautician charges a flat rate of $4, plus $0.75 per braid. She's saved $29 to get braids. How many braids can she get?
Answer:
33 braids
Step-by-step explanation:
What you want to do is first put in the equation. You put in 0.75x + 4=29.
Then you subtract 4 from 29 and get 25. Then divide 25 by 0.75 and you get the answer 33.3333333333. Round it to the nearest whole number and you get the final answer of 33 braids.
k(a) = -4³a+2; Find k(a − 2)
Answer:
I believe its −64a +130
Step-by-step explanation: