Stop posting on here and do the work yourself I usually don't mind helping people but in some cases, I need to just say do it by yourself look at notes look up the answer there are a million things you can do instead of spam posting all your questions good day
Answer:
7=2+1
Step-by-step explanation:
How should I go about solving this question?
Answer:
A radius of a circle or sphere is any of the line segments from its center to its perimeter, and in more modern usage, it is also their length
Step-by-step explanation:
A rectangular price tag has a perimeter of 24 centimeters. Its area is 27 square centimeters. What are the dimensions of the price tag?
what is 2/4 × 1/4 + 1/4 ÷ 3/4
renegade renegade woo hah hah boom boom boom boom
Answer
0.45833333333
Step-by-step explanation:
Answer:
you first get 0.45833333333
but if you carry the renagade over twice it would make it 4.20
Step-by-step explanation:
Which is the better value? Circle it. 3 sandwiches for 15.00 or 4 sandwiches for 21.00?
Answer:
I say 3 sandwiches for 15.
Step-by-step explanation:
to find the best price divided the numbers
15 divided by 3= 5
5 is the price per sandwich for this
21 divided by 4= 5.25
5.25 per sandwich
the 3 for 15 is a better deal. You save money.
what has to be the same in order to add fractions?
as a mixed number
13
Write
as a mixed number.
6
Answer:
2 (1/6)
Step-by-step explanation:
when 13 is divided by 6, the remainder is 1 with the result of 2. In the format of a(b/c), the result is a, the remainder is b, and the divisor is c.
Answer:[tex]2\frac{1}{6}[/tex]
Step-by-step explanation:
Converting to a mixed number using long division with remainders for 13 ÷ 6.13÷6=2R1
Therefore:[tex]\frac{13}{6}=2\frac{1}{6}[/tex]
The ratio of sixth-grade students to fifth-grade students in the Kirkpatrick Elementary school band is 5:4. If there are 20 fifth-grade students in the band how many sixth-grade students are in the band?
Answer: 25 sixth graders
Step-by-step explanation:
Sixth-graders are in a ratio with fifth graders in the band at 5:4 and there are 20 fifth-grade students in the band.
To find the number of 6th graders, use direct proportion and assume the sixth grader number is x:
5 : 4
x : 20
4x = 100
x = 100 / 4
x = 25 sixth graders
Can someone please help me with this
Answer: 15 and 1/4
Step-by-step explanation:
3 + 4 + 3 + 4 + 3/16+3/16+7/16 + 7/16
14 + 20/16
14+ 1 4/16
15 and 1/4
the y-intercept is the y -value of the point at which the graph of a function crosses the y-axis True or False
Answer:
True
Step-by-step explanation:
The y intercept is where the line "crosses through" or "goes through" the y axis.
please answer this :(
Answer:
68.9°
Step-by-step explanation:
Using Sine rule
x/sin X = y/sin Y
4.5/sin X = 4/sin 56
sin X × 4 = 4.5 × sin 56
sin X = 4.5 × sin 56/4
X = arc sin (4.5 × sin 56/4)
X = 68.85449°
Approximately = 68.9°
If your test marks in your last 3 tests were: 70%, 82%, and 90%, what's your average test mark?
Answer:
80,66
Step-by-step explanation:
70 + 82 + 90 = 242
for average: you have 3 tests, so 242÷3 = 80,66667
Help plz it would mean a lot thanks
Answer:
1. 128 cm^3
2. 28 ft^3
3. 45 yd^3
4. 675 in^3
5. 83.7 mm^3
6. 144 cm^3
Step-by-step explanation:
just multiply
the number of squirrels in a park at the end of the month
Using the given recursive function, we have that:
a) There will be 132 squirrels in the park at the end of August.
b) As time goes by, the number of squirrels in the park will increase.
What is the recursive function for this problem?
The recursive function for this problem models the number of squirrels in the park at the end of month n+1, considering the amount present at the end of month n, as follows:
[tex]S_{n+1} = 1.6S_n - 30[/tex]
For this problem, we have that at the amount at the end of May is of 70, hence:
[tex]S_{5} = 70[/tex]
Hence, we find the amounts at the end of June, July and August, as follows:
[tex]S_6 = 1.6(70) - 30 = 82[/tex].[tex]S_7 = 1.6(82) - 30 = 101[/tex].[tex]S_8 = 1.6(101) - 30 = 132[/tex].Hence:
a) There will be 132 squirrels in the park at the end of August.
b) As time goes by, the number of squirrels in the park will increase.
More can be learned about recursive functions at https://brainly.com/question/489759
#SPJ1
Help
Write a function to represent the set of ordered pairs.
{(2, -1), (4, 5), (6, 15), (8, 29)}
Step-by-step explanation:
ES6 has a new Set data structure for storing sets of unique objects. However it is based on object references as opposed to value comparisons. As far as I can tell this makes it impossible to have a set of pairs of numbers without stringifying.
For example, typing in Chrome's console (needs Chrome 38+):
> var s = new Set(); < undefined > s.add([2, 3]); < Set {[2, 3]} > s.has([2, 3]) < false <--- was hoping for 'true'
This appears to be by design: since I passed a different array of [2, 3] to has(), it returns false, because although the contents is the same it only looks at object references, and I allocated a new and different array to pass to has(). I would need to store a reference to the original array I passed to add() to check with has(), but this is not always possible. For example if the number pairs represent co-ordinates, I might need to check if the set has [obj.x, obj.y], but this will always return false since it allocates a new array.
The workaround is to stringify the arrays and key on strings like "2, 3" instead. However in something performance-sensitive like a game engine, it is unfortunate if every set access needs to make a string allocation and convert and concatenate number strings.
Does ES6 provide any feature to solve this problem without stringifying, or is there any feature on the horizon with ES7 that could help as well?
javascriptperformancedata-structuressetecmascript-6
Share
2
Follow
asked Sep 21 '14 at 13:06

AshleysBrain
20.4k1515 gold badges8181 silver badges119119 bronze badges
Add a comment
3 Answers
ActiveOldestVotes
3
As you've noted [2, 3] === [2, 3] is false, meaning you can't use Set like this; however, is Set really the best option for you?
You may find that using a two-level data structure like this will be better for you
var o = {}; function add(o, x, y) { if (!o[x]) o[x] = {}; o[x][y] = true; } function has(o, x, y) { return !!(o[x] && o[x][y]); } function del(o, x, y) { if (!o[x]) return; delete o[x][y]; // maybe delete `o[x]` if keys.length === 0
help asap plsssss dont get it wrong
Answer:
it should look like this
Find the slope hurryyy
Answer:
-5
Step-by-step explanation:
Answer:
The slope is -5
Step-by-step explanation:
hope it helps....
have a great day!!!
A restaurant offers a dinner salad for $3.75. There is a choice of a lettuce salad or a spinach salad. Then there is a choice of one topping from mushrooms, beans, or cheese. Finally, there is a choice of dressing from ranch, oil, or vinegar. How many different salad combinations are possible?
Answer:
There are 12 possible salad combonations
Step-by-step explanation:
Answer:
12
Step-by-step explanation:
The person above me is correct ;)
You have 84 feet of streamers. You cut 24 pieces that are each 1/2 yard long. How many feet of streamers do you have left?
Answer:
48
Step-by-step explanation:
If we have 84 feet of streamers. You cut 24 pieces that are each 1/2 yard long then 48 feet of streamers we left.
What is Unit of Measurement ?A unit of measurement is a definite magnitude of a quantity, defined and adopted by convention or by law, that is used as a standard for measurement of the same kind of quantity.
Given that we have a 84 feet of streamers.
You cut 24 pieces that are each 1/2 yard long.
Need to find the feet of streamers we left.
We know that 1 yard is equal to 3 feet.
Therefore, 1/2 yard is equal to 1.5 feet.
The total length of the streamers that were cut is:
24 pieces x 1.5 feet/piece = 36 feet
To find out how much streamer is left, we can subtract the length of the cut streamers from the total length we started with:
84 feet - 36 feet = 48 feet
Therefore, you have 48 feet of streamers left.
To learn more on Unit of Measurement click:
https://brainly.com/question/14026238
#SPJ2
Find the value of x.
48
(7x + 13)
A. 7
B. 11
C. 3
D. 5
5 of 5
Pip, Angad and Nick share some sweets in
the ratio 3:1:1. Pip gets 36 more sweets
than Nick. How many sweets are there
altogether?
Can you answer plz
у = х + 3
у =-2x-3
Answer:
x = - 2, y = 1
Step-by-step explanation:
Comparing both the equations,
→ y = y → x + 3 = - 2x - 3
=> x + 3 = - 2x - 3
=> x + 2x = - 3 - 3
=> 3x = - 6
=> x = - 6/3 = - 2
Substitute the value of x in any of these:
=> y = x + 3 = - 2 + 3 = 1
Answer:
Step-by-step explanation:
If a solution exists for the system of equations y=y so we can say
x+3=-2x-3 Add 2x to each side
3x+3=-3 Subtract 3 from each side
3x=-6. Divide each side by 3
x=-2, since y=x+3
y=-2+3
y=1
So the solution to the system of equations is the point (x,y)=(-2,1)
table represents a quadratic function?
Which
Answer: third graph -4,2 -2,-7
Step-by-step explanation:
In ABC, b = 68 inches, B=65° and C=93º. Find the length of a, to the nearest
inches
Answer:
28inches
Step-by-step explanation:
∠A + ∠B + ∠C = 180°
∠A + 65° +93° = 180°
∠A + 158° = 180°
∠A= 180°-158° = 22°
Using Law of Sines
a/sinA= b/sinB
a/sin22= 68 inches/sin65
a/sin22 = 68/0.9063 = 75.03
a = 75.03 x sin 22
a = 75.03 x 0.3746 = 28.106238≈28 inches
Can someone help me out with this question? Thanks
Answer:
160
Step-by-step explanation:
vertical angles
Answer:
its 80
Step-by-step explanation:
because of vertical angles the 160 is the same for the other side so you subtract the 80
Shirley bought 20.8 pounds of bird seed at a bargain store. She wants to fill her feeder 100 times
with anequal amount. How much seed should she put in the feeder each time?
Answer:
0.208
Step-by-step explanation:
Hope this helps....
Answer:
0.208
Step-by-step explanation:
(Please Help Asap!)
Find the volume of a cylinder having a height of 105 millimeters and a base with a diameter of 40 millimeters. Use the volume formula and 22/7 for π.
Choose the values for r and h. (1 H and 1 R)
h = 22/7
h = 105
r = 20
r = 40
Answer:
132,000 millimeters squared, H= 105, R= 20
Step-by-step explanation:
Volume equation (r= radius, h = height)
v= (pie)x r^2 x h
Pie = 22/7
r = 1/2 the diameter, so 40/2= 20. r = 20
h = 105
Substitute
(22/7) x 20^2 x 105
20^2 = 400
(22/7) x 400 x 105 = 132,000
What is the size of angle s !!
The sum of the angles of a quadrilaterals is 360 so 8s=360 s=45
ill mark u brainliest pls show work
Answer: Function A; 14 meters per seond
Step-by-step explanation:
do Distance/time for Function A: so you can show 140/10, or 280/20, it doesnt matter as they are all constant/consistent.
A has a rate of 14 m/s
B's rate is given, 13 m/s
So A has a faster rate of 14 meters per second
Connor has five nickels in one hand and some dimes in his other hand. He has more than two times as many dimes as nickels. He has fewer than three times as many dimes as nickels.
Complete question :
How many dimes might he have?
How many coins would he have altogether?
Answer:
11, 12, 13, 14 ;
16, 17, 18, 19
Step-by-step explanation:
Let :
Nickel = n
Dimes = d
Total number of nickels = 5
He has more than 2 times as many dimes as nickels ;
d > 2n
d > 2*5 ; d > 10
He has fewer than 3 times as many dimes as nickels;
d < 3n
d < 3*5 ; d < 15
Meaning he has more than 10 dimes but less than 15.
10 < d < 15
So, d could be ;
11, 12, 13, 14
Number of coins altogether :
11 + 5 = 16
12 + 5 = 17
13 + 5 = 18
14 + 5 = 19
Can Someone help me with this work
Answer:
Oar City is cheaper
Step-by-step explanation:
27/3=9 (Boat Bunker)
45/9=5 (Oar City)
$4 Cheaper than Boat Bunker
Brainlist?
Answer: Oar City is the answer.
Step-by-step explanation: