blob: 6c021a0cbb4632f31612154c4e7fbd6a3fd0bb11 [file] [log] [blame]
Thomas Wouters1b7f8912007-09-19 03:06:30 +00001------------------------------------------------------------------------
2-- powersqrt.decTest -- decimal square root, using power --
Benjamin Petersonf17ff4e2008-07-31 16:32:12 +00003-- Copyright (c) IBM Corporation, 2004, 2008. All rights reserved. --
Thomas Wouters1b7f8912007-09-19 03:06:30 +00004------------------------------------------------------------------------
5-- Please see the document "General Decimal Arithmetic Testcases" --
6-- at http://www2.hursley.ibm.com/decimal for the description of --
7-- these testcases. --
8-- --
9-- These testcases are experimental ('beta' versions), and they --
10-- may contain errors. They are offered on an as-is basis. In --
11-- particular, achieving the same results as the tests here is not --
12-- a guarantee that an implementation complies with any Standard --
13-- or specification. The tests are not exhaustive. --
14-- --
15-- Please send comments, suggestions, and corrections to the author: --
16-- Mike Cowlishaw, IBM Fellow --
17-- IBM UK, PO Box 31, Birmingham Road, Warwick CV34 5JL, UK --
18-- mfc@uk.ibm.com --
19------------------------------------------------------------------------
Mark Dickinson8a546532009-10-08 16:30:38 +000020version: 2.59
Thomas Wouters1b7f8912007-09-19 03:06:30 +000021
22-- These testcases are taken from squareroot.decTest but are
23-- evaluated using the power operator. The differences in results
24-- (153 out of 2856) fall into the following categories:
25--
26-- x ** 0.5 (x>0) has no preferred exponent, and is Inexact
27-- (and hence full precision); almost all differences are
28-- in this category
29-- 0.00 ** 0.5 becomes 0 (not 0.0), etc.
30-- -0 ** 0.5 becomes 0 (never -0)
31-- Some exact subnormals become inexact and hence underflows
32
33extended: 1
34precision: 9
35rounding: half_even
36maxExponent: 384
37minexponent: -383
38
39-- basics
40pwsx001 power 1 0.5 -> 1.00000000 Inexact Rounded
41pwsx002 power -1 0.5 -> NaN Invalid_operation
42pwsx003 power 1.00 0.5 -> 1.00000000 Inexact Rounded
43pwsx004 power -1.00 0.5 -> NaN Invalid_operation
44pwsx005 power 0 0.5 -> 0
45pwsx006 power 00.0 0.5 -> 0
46pwsx007 power 0.00 0.5 -> 0
47pwsx008 power 00.00 0.5 -> 0
48pwsx009 power 00.000 0.5 -> 0
49pwsx010 power 00.0000 0.5 -> 0
50pwsx011 power 00 0.5 -> 0
51
52pwsx012 power -2 0.5 -> NaN Invalid_operation
53pwsx013 power 2 0.5 -> 1.41421356 Inexact Rounded
54pwsx014 power -2.00 0.5 -> NaN Invalid_operation
55pwsx015 power 2.00 0.5 -> 1.41421356 Inexact Rounded
56pwsx016 power -0 0.5 -> 0
57pwsx017 power -0.0 0.5 -> 0
58pwsx018 power -00.00 0.5 -> 0
59pwsx019 power -00.000 0.5 -> 0
60pwsx020 power -0.0000 0.5 -> 0
61pwsx021 power -0E+9 0.5 -> 0
62pwsx022 power -0E+10 0.5 -> 0
63pwsx023 power -0E+11 0.5 -> 0
64pwsx024 power -0E+12 0.5 -> 0
65pwsx025 power -00 0.5 -> 0
66pwsx026 power 0E+5 0.5 -> 0
67pwsx027 power 4.0 0.5 -> 2.00000000 Inexact Rounded
68pwsx028 power 4.00 0.5 -> 2.00000000 Inexact Rounded
69
70pwsx030 power +0.1 0.5 -> 0.316227766 Inexact Rounded
71pwsx031 power -0.1 0.5 -> NaN Invalid_operation
72pwsx032 power +0.01 0.5 -> 0.100000000 Inexact Rounded
73pwsx033 power -0.01 0.5 -> NaN Invalid_operation
74pwsx034 power +0.001 0.5 -> 0.0316227766 Inexact Rounded
75pwsx035 power -0.001 0.5 -> NaN Invalid_operation
76pwsx036 power +0.000001 0.5 -> 0.00100000000 Inexact Rounded
77pwsx037 power -0.000001 0.5 -> NaN Invalid_operation
78pwsx038 power +0.000000000001 0.5 -> 0.00000100000000 Inexact Rounded
79pwsx039 power -0.000000000001 0.5 -> NaN Invalid_operation
80
81pwsx041 power 1.1 0.5 -> 1.04880885 Inexact Rounded
82pwsx042 power 1.10 0.5 -> 1.04880885 Inexact Rounded
83pwsx043 power 1.100 0.5 -> 1.04880885 Inexact Rounded
84pwsx044 power 1.110 0.5 -> 1.05356538 Inexact Rounded
85pwsx045 power -1.1 0.5 -> NaN Invalid_operation
86pwsx046 power -1.10 0.5 -> NaN Invalid_operation
87pwsx047 power -1.100 0.5 -> NaN Invalid_operation
88pwsx048 power -1.110 0.5 -> NaN Invalid_operation
89pwsx049 power 9.9 0.5 -> 3.14642654 Inexact Rounded
90pwsx050 power 9.90 0.5 -> 3.14642654 Inexact Rounded
91pwsx051 power 9.900 0.5 -> 3.14642654 Inexact Rounded
92pwsx052 power 9.990 0.5 -> 3.16069613 Inexact Rounded
93pwsx053 power -9.9 0.5 -> NaN Invalid_operation
94pwsx054 power -9.90 0.5 -> NaN Invalid_operation
95pwsx055 power -9.900 0.5 -> NaN Invalid_operation
96pwsx056 power -9.990 0.5 -> NaN Invalid_operation
97
98pwsx060 power 1 0.5 -> 1.00000000 Inexact Rounded
99pwsx061 power 1.0 0.5 -> 1.00000000 Inexact Rounded
100pwsx062 power 1.00 0.5 -> 1.00000000 Inexact Rounded
101pwsx063 power 10.0 0.5 -> 3.16227766 Inexact Rounded
102pwsx064 power 10.0 0.5 -> 3.16227766 Inexact Rounded
103pwsx065 power 10.0 0.5 -> 3.16227766 Inexact Rounded
104pwsx066 power 10.00 0.5 -> 3.16227766 Inexact Rounded
105pwsx067 power 100 0.5 -> 10.0000000 Inexact Rounded
106pwsx068 power 100.0 0.5 -> 10.0000000 Inexact Rounded
107pwsx069 power 100.00 0.5 -> 10.0000000 Inexact Rounded
108pwsx070 power 1.1000E+3 0.5 -> 33.1662479 Inexact Rounded
109pwsx071 power 1.10000E+3 0.5 -> 33.1662479 Inexact Rounded
110pwsx072 power -10.0 0.5 -> NaN Invalid_operation
111pwsx073 power -10.00 0.5 -> NaN Invalid_operation
112pwsx074 power -100.0 0.5 -> NaN Invalid_operation
113pwsx075 power -100.00 0.5 -> NaN Invalid_operation
114pwsx076 power -1.1000E+3 0.5 -> NaN Invalid_operation
115pwsx077 power -1.10000E+3 0.5 -> NaN Invalid_operation
116
117-- famous squares
118pwsx080 power 1 0.5 -> 1.00000000 Inexact Rounded
119pwsx081 power 4 0.5 -> 2.00000000 Inexact Rounded
120pwsx082 power 9 0.5 -> 3.00000000 Inexact Rounded
121pwsx083 power 16 0.5 -> 4.00000000 Inexact Rounded
122pwsx084 power 25 0.5 -> 5.00000000 Inexact Rounded
123pwsx085 power 36 0.5 -> 6.00000000 Inexact Rounded
124pwsx086 power 49 0.5 -> 7.00000000 Inexact Rounded
125pwsx087 power 64 0.5 -> 8.00000000 Inexact Rounded
126pwsx088 power 81 0.5 -> 9.00000000 Inexact Rounded
127pwsx089 power 100 0.5 -> 10.0000000 Inexact Rounded
128pwsx090 power 121 0.5 -> 11.0000000 Inexact Rounded
129pwsx091 power 144 0.5 -> 12.0000000 Inexact Rounded
130pwsx092 power 169 0.5 -> 13.0000000 Inexact Rounded
131pwsx093 power 256 0.5 -> 16.0000000 Inexact Rounded
132pwsx094 power 1024 0.5 -> 32.0000000 Inexact Rounded
133pwsx095 power 4096 0.5 -> 64.0000000 Inexact Rounded
134pwsx100 power 0.01 0.5 -> 0.100000000 Inexact Rounded
135pwsx101 power 0.04 0.5 -> 0.200000000 Inexact Rounded
136pwsx102 power 0.09 0.5 -> 0.300000000 Inexact Rounded
137pwsx103 power 0.16 0.5 -> 0.400000000 Inexact Rounded
138pwsx104 power 0.25 0.5 -> 0.500000000 Inexact Rounded
139pwsx105 power 0.36 0.5 -> 0.600000000 Inexact Rounded
140pwsx106 power 0.49 0.5 -> 0.700000000 Inexact Rounded
141pwsx107 power 0.64 0.5 -> 0.800000000 Inexact Rounded
142pwsx108 power 0.81 0.5 -> 0.900000000 Inexact Rounded
143pwsx109 power 1.00 0.5 -> 1.00000000 Inexact Rounded
144pwsx110 power 1.21 0.5 -> 1.10000000 Inexact Rounded
145pwsx111 power 1.44 0.5 -> 1.20000000 Inexact Rounded
146pwsx112 power 1.69 0.5 -> 1.30000000 Inexact Rounded
147pwsx113 power 2.56 0.5 -> 1.60000000 Inexact Rounded
148pwsx114 power 10.24 0.5 -> 3.20000000 Inexact Rounded
149pwsx115 power 40.96 0.5 -> 6.40000000 Inexact Rounded
150
151-- Precision 1 squareroot tests [exhaustive, plus exponent adjusts]
152rounding: half_even
153maxExponent: 999
154minexponent: -999
155precision: 1
156pwsx1201 power 0.1 0.5 -> 0.3 Inexact Rounded
157pwsx1202 power 0.01 0.5 -> 0.1 Inexact Rounded
158pwsx1203 power 1.0E-1 0.5 -> 0.3 Inexact Rounded
159pwsx1204 power 1.00E-2 0.5 -> 0.1 Inexact Rounded
160pwsx1205 power 1E-3 0.5 -> 0.03 Inexact Rounded
161pwsx1206 power 1E+1 0.5 -> 3 Inexact Rounded
162pwsx1207 power 1E+2 0.5 -> 1E+1 Inexact Rounded
163pwsx1208 power 1E+3 0.5 -> 3E+1 Inexact Rounded
164pwsx1209 power 0.2 0.5 -> 0.4 Inexact Rounded
165pwsx1210 power 0.02 0.5 -> 0.1 Inexact Rounded
166pwsx1211 power 2.0E-1 0.5 -> 0.4 Inexact Rounded
167pwsx1212 power 2.00E-2 0.5 -> 0.1 Inexact Rounded
168pwsx1213 power 2E-3 0.5 -> 0.04 Inexact Rounded
169pwsx1214 power 2E+1 0.5 -> 4 Inexact Rounded
170pwsx1215 power 2E+2 0.5 -> 1E+1 Inexact Rounded
171pwsx1216 power 2E+3 0.5 -> 4E+1 Inexact Rounded
172pwsx1217 power 0.3 0.5 -> 0.5 Inexact Rounded
173pwsx1218 power 0.03 0.5 -> 0.2 Inexact Rounded
174pwsx1219 power 3.0E-1 0.5 -> 0.5 Inexact Rounded
175pwsx1220 power 3.00E-2 0.5 -> 0.2 Inexact Rounded
176pwsx1221 power 3E-3 0.5 -> 0.05 Inexact Rounded
177pwsx1222 power 3E+1 0.5 -> 5 Inexact Rounded
178pwsx1223 power 3E+2 0.5 -> 2E+1 Inexact Rounded
179pwsx1224 power 3E+3 0.5 -> 5E+1 Inexact Rounded
180pwsx1225 power 0.4 0.5 -> 0.6 Inexact Rounded
181pwsx1226 power 0.04 0.5 -> 0.2 Inexact Rounded
182pwsx1227 power 4.0E-1 0.5 -> 0.6 Inexact Rounded
183pwsx1228 power 4.00E-2 0.5 -> 0.2 Inexact Rounded
184pwsx1229 power 4E-3 0.5 -> 0.06 Inexact Rounded
185pwsx1230 power 4E+1 0.5 -> 6 Inexact Rounded
186pwsx1231 power 4E+2 0.5 -> 2E+1 Inexact Rounded
187pwsx1232 power 4E+3 0.5 -> 6E+1 Inexact Rounded
188pwsx1233 power 0.5 0.5 -> 0.7 Inexact Rounded
189pwsx1234 power 0.05 0.5 -> 0.2 Inexact Rounded
190pwsx1235 power 5.0E-1 0.5 -> 0.7 Inexact Rounded
191pwsx1236 power 5.00E-2 0.5 -> 0.2 Inexact Rounded
192pwsx1237 power 5E-3 0.5 -> 0.07 Inexact Rounded
193pwsx1238 power 5E+1 0.5 -> 7 Inexact Rounded
194pwsx1239 power 5E+2 0.5 -> 2E+1 Inexact Rounded
195pwsx1240 power 5E+3 0.5 -> 7E+1 Inexact Rounded
196pwsx1241 power 0.6 0.5 -> 0.8 Inexact Rounded
197pwsx1242 power 0.06 0.5 -> 0.2 Inexact Rounded
198pwsx1243 power 6.0E-1 0.5 -> 0.8 Inexact Rounded
199pwsx1244 power 6.00E-2 0.5 -> 0.2 Inexact Rounded
200pwsx1245 power 6E-3 0.5 -> 0.08 Inexact Rounded
201pwsx1246 power 6E+1 0.5 -> 8 Inexact Rounded
202pwsx1247 power 6E+2 0.5 -> 2E+1 Inexact Rounded
203pwsx1248 power 6E+3 0.5 -> 8E+1 Inexact Rounded
204pwsx1249 power 0.7 0.5 -> 0.8 Inexact Rounded
205pwsx1250 power 0.07 0.5 -> 0.3 Inexact Rounded
206pwsx1251 power 7.0E-1 0.5 -> 0.8 Inexact Rounded
207pwsx1252 power 7.00E-2 0.5 -> 0.3 Inexact Rounded
208pwsx1253 power 7E-3 0.5 -> 0.08 Inexact Rounded
209pwsx1254 power 7E+1 0.5 -> 8 Inexact Rounded
210pwsx1255 power 7E+2 0.5 -> 3E+1 Inexact Rounded
211pwsx1256 power 7E+3 0.5 -> 8E+1 Inexact Rounded
212pwsx1257 power 0.8 0.5 -> 0.9 Inexact Rounded
213pwsx1258 power 0.08 0.5 -> 0.3 Inexact Rounded
214pwsx1259 power 8.0E-1 0.5 -> 0.9 Inexact Rounded
215pwsx1260 power 8.00E-2 0.5 -> 0.3 Inexact Rounded
216pwsx1261 power 8E-3 0.5 -> 0.09 Inexact Rounded
217pwsx1262 power 8E+1 0.5 -> 9 Inexact Rounded
218pwsx1263 power 8E+2 0.5 -> 3E+1 Inexact Rounded
219pwsx1264 power 8E+3 0.5 -> 9E+1 Inexact Rounded
220pwsx1265 power 0.9 0.5 -> 0.9 Inexact Rounded
221pwsx1266 power 0.09 0.5 -> 0.3 Inexact Rounded
222pwsx1267 power 9.0E-1 0.5 -> 0.9 Inexact Rounded
223pwsx1268 power 9.00E-2 0.5 -> 0.3 Inexact Rounded
224pwsx1269 power 9E-3 0.5 -> 0.09 Inexact Rounded
225pwsx1270 power 9E+1 0.5 -> 9 Inexact Rounded
226pwsx1271 power 9E+2 0.5 -> 3E+1 Inexact Rounded
227pwsx1272 power 9E+3 0.5 -> 9E+1 Inexact Rounded
228
229-- Precision 2 squareroot tests [exhaustive, plus exponent adjusts]
230rounding: half_even
231maxExponent: 999
232minexponent: -999
233precision: 2
234pwsx2201 power 0.1 0.5 -> 0.32 Inexact Rounded
235pwsx2202 power 0.01 0.5 -> 0.10 Inexact Rounded
236pwsx2203 power 1.0E-1 0.5 -> 0.32 Inexact Rounded
237pwsx2204 power 1.00E-2 0.5 -> 0.10 Inexact Rounded
238pwsx2205 power 1E-3 0.5 -> 0.032 Inexact Rounded
239pwsx2206 power 1E+1 0.5 -> 3.2 Inexact Rounded
240pwsx2207 power 1E+2 0.5 -> 10 Inexact Rounded
241pwsx2208 power 1E+3 0.5 -> 32 Inexact Rounded
242pwsx2209 power 0.2 0.5 -> 0.45 Inexact Rounded
243pwsx2210 power 0.02 0.5 -> 0.14 Inexact Rounded
244pwsx2211 power 2.0E-1 0.5 -> 0.45 Inexact Rounded
245pwsx2212 power 2.00E-2 0.5 -> 0.14 Inexact Rounded
246pwsx2213 power 2E-3 0.5 -> 0.045 Inexact Rounded
247pwsx2214 power 2E+1 0.5 -> 4.5 Inexact Rounded
248pwsx2215 power 2E+2 0.5 -> 14 Inexact Rounded
249pwsx2216 power 2E+3 0.5 -> 45 Inexact Rounded
250pwsx2217 power 0.3 0.5 -> 0.55 Inexact Rounded
251pwsx2218 power 0.03 0.5 -> 0.17 Inexact Rounded
252pwsx2219 power 3.0E-1 0.5 -> 0.55 Inexact Rounded
253pwsx2220 power 3.00E-2 0.5 -> 0.17 Inexact Rounded
254pwsx2221 power 3E-3 0.5 -> 0.055 Inexact Rounded
255pwsx2222 power 3E+1 0.5 -> 5.5 Inexact Rounded
256pwsx2223 power 3E+2 0.5 -> 17 Inexact Rounded
257pwsx2224 power 3E+3 0.5 -> 55 Inexact Rounded
258pwsx2225 power 0.4 0.5 -> 0.63 Inexact Rounded
259pwsx2226 power 0.04 0.5 -> 0.20 Inexact Rounded
260pwsx2227 power 4.0E-1 0.5 -> 0.63 Inexact Rounded
261pwsx2228 power 4.00E-2 0.5 -> 0.20 Inexact Rounded
262pwsx2229 power 4E-3 0.5 -> 0.063 Inexact Rounded
263pwsx2230 power 4E+1 0.5 -> 6.3 Inexact Rounded
264pwsx2231 power 4E+2 0.5 -> 20 Inexact Rounded
265pwsx2232 power 4E+3 0.5 -> 63 Inexact Rounded
266pwsx2233 power 0.5 0.5 -> 0.71 Inexact Rounded
267pwsx2234 power 0.05 0.5 -> 0.22 Inexact Rounded
268pwsx2235 power 5.0E-1 0.5 -> 0.71 Inexact Rounded
269pwsx2236 power 5.00E-2 0.5 -> 0.22 Inexact Rounded
270pwsx2237 power 5E-3 0.5 -> 0.071 Inexact Rounded
271pwsx2238 power 5E+1 0.5 -> 7.1 Inexact Rounded
272pwsx2239 power 5E+2 0.5 -> 22 Inexact Rounded
273pwsx2240 power 5E+3 0.5 -> 71 Inexact Rounded
274pwsx2241 power 0.6 0.5 -> 0.77 Inexact Rounded
275pwsx2242 power 0.06 0.5 -> 0.24 Inexact Rounded
276pwsx2243 power 6.0E-1 0.5 -> 0.77 Inexact Rounded
277pwsx2244 power 6.00E-2 0.5 -> 0.24 Inexact Rounded
278pwsx2245 power 6E-3 0.5 -> 0.077 Inexact Rounded
279pwsx2246 power 6E+1 0.5 -> 7.7 Inexact Rounded
280pwsx2247 power 6E+2 0.5 -> 24 Inexact Rounded
281pwsx2248 power 6E+3 0.5 -> 77 Inexact Rounded
282pwsx2249 power 0.7 0.5 -> 0.84 Inexact Rounded
283pwsx2250 power 0.07 0.5 -> 0.26 Inexact Rounded
284pwsx2251 power 7.0E-1 0.5 -> 0.84 Inexact Rounded
285pwsx2252 power 7.00E-2 0.5 -> 0.26 Inexact Rounded
286pwsx2253 power 7E-3 0.5 -> 0.084 Inexact Rounded
287pwsx2254 power 7E+1 0.5 -> 8.4 Inexact Rounded
288pwsx2255 power 7E+2 0.5 -> 26 Inexact Rounded
289pwsx2256 power 7E+3 0.5 -> 84 Inexact Rounded
290pwsx2257 power 0.8 0.5 -> 0.89 Inexact Rounded
291pwsx2258 power 0.08 0.5 -> 0.28 Inexact Rounded
292pwsx2259 power 8.0E-1 0.5 -> 0.89 Inexact Rounded
293pwsx2260 power 8.00E-2 0.5 -> 0.28 Inexact Rounded
294pwsx2261 power 8E-3 0.5 -> 0.089 Inexact Rounded
295pwsx2262 power 8E+1 0.5 -> 8.9 Inexact Rounded
296pwsx2263 power 8E+2 0.5 -> 28 Inexact Rounded
297pwsx2264 power 8E+3 0.5 -> 89 Inexact Rounded
298pwsx2265 power 0.9 0.5 -> 0.95 Inexact Rounded
299pwsx2266 power 0.09 0.5 -> 0.30 Inexact Rounded
300pwsx2267 power 9.0E-1 0.5 -> 0.95 Inexact Rounded
301pwsx2268 power 9.00E-2 0.5 -> 0.30 Inexact Rounded
302pwsx2269 power 9E-3 0.5 -> 0.095 Inexact Rounded
303pwsx2270 power 9E+1 0.5 -> 9.5 Inexact Rounded
304pwsx2271 power 9E+2 0.5 -> 30 Inexact Rounded
305pwsx2272 power 9E+3 0.5 -> 95 Inexact Rounded
306pwsx2273 power 0.10 0.5 -> 0.32 Inexact Rounded
307pwsx2274 power 0.010 0.5 -> 0.10 Inexact Rounded
308pwsx2275 power 10.0E-1 0.5 -> 1.0 Inexact Rounded
309pwsx2276 power 10.00E-2 0.5 -> 0.32 Inexact Rounded
310pwsx2277 power 10E-3 0.5 -> 0.10 Inexact Rounded
311pwsx2278 power 10E+1 0.5 -> 10 Inexact Rounded
312pwsx2279 power 10E+2 0.5 -> 32 Inexact Rounded
313pwsx2280 power 10E+3 0.5 -> 1.0E+2 Inexact Rounded
314pwsx2281 power 0.11 0.5 -> 0.33 Inexact Rounded
315pwsx2282 power 0.011 0.5 -> 0.10 Inexact Rounded
316pwsx2283 power 11.0E-1 0.5 -> 1.0 Inexact Rounded
317pwsx2284 power 11.00E-2 0.5 -> 0.33 Inexact Rounded
318pwsx2285 power 11E-3 0.5 -> 0.10 Inexact Rounded
319pwsx2286 power 11E+1 0.5 -> 10 Inexact Rounded
320pwsx2287 power 11E+2 0.5 -> 33 Inexact Rounded
321pwsx2288 power 11E+3 0.5 -> 1.0E+2 Inexact Rounded
322pwsx2289 power 0.12 0.5 -> 0.35 Inexact Rounded
323pwsx2290 power 0.012 0.5 -> 0.11 Inexact Rounded
324pwsx2291 power 12.0E-1 0.5 -> 1.1 Inexact Rounded
325pwsx2292 power 12.00E-2 0.5 -> 0.35 Inexact Rounded
326pwsx2293 power 12E-3 0.5 -> 0.11 Inexact Rounded
327pwsx2294 power 12E+1 0.5 -> 11 Inexact Rounded
328pwsx2295 power 12E+2 0.5 -> 35 Inexact Rounded
329pwsx2296 power 12E+3 0.5 -> 1.1E+2 Inexact Rounded
330pwsx2297 power 0.13 0.5 -> 0.36 Inexact Rounded
331pwsx2298 power 0.013 0.5 -> 0.11 Inexact Rounded
332pwsx2299 power 13.0E-1 0.5 -> 1.1 Inexact Rounded
333pwsx2300 power 13.00E-2 0.5 -> 0.36 Inexact Rounded
334pwsx2301 power 13E-3 0.5 -> 0.11 Inexact Rounded
335pwsx2302 power 13E+1 0.5 -> 11 Inexact Rounded
336pwsx2303 power 13E+2 0.5 -> 36 Inexact Rounded
337pwsx2304 power 13E+3 0.5 -> 1.1E+2 Inexact Rounded
338pwsx2305 power 0.14 0.5 -> 0.37 Inexact Rounded
339pwsx2306 power 0.014 0.5 -> 0.12 Inexact Rounded
340pwsx2307 power 14.0E-1 0.5 -> 1.2 Inexact Rounded
341pwsx2308 power 14.00E-2 0.5 -> 0.37 Inexact Rounded
342pwsx2309 power 14E-3 0.5 -> 0.12 Inexact Rounded
343pwsx2310 power 14E+1 0.5 -> 12 Inexact Rounded
344pwsx2311 power 14E+2 0.5 -> 37 Inexact Rounded
345pwsx2312 power 14E+3 0.5 -> 1.2E+2 Inexact Rounded
346pwsx2313 power 0.15 0.5 -> 0.39 Inexact Rounded
347pwsx2314 power 0.015 0.5 -> 0.12 Inexact Rounded
348pwsx2315 power 15.0E-1 0.5 -> 1.2 Inexact Rounded
349pwsx2316 power 15.00E-2 0.5 -> 0.39 Inexact Rounded
350pwsx2317 power 15E-3 0.5 -> 0.12 Inexact Rounded
351pwsx2318 power 15E+1 0.5 -> 12 Inexact Rounded
352pwsx2319 power 15E+2 0.5 -> 39 Inexact Rounded
353pwsx2320 power 15E+3 0.5 -> 1.2E+2 Inexact Rounded
354pwsx2321 power 0.16 0.5 -> 0.40 Inexact Rounded
355pwsx2322 power 0.016 0.5 -> 0.13 Inexact Rounded
356pwsx2323 power 16.0E-1 0.5 -> 1.3 Inexact Rounded
357pwsx2324 power 16.00E-2 0.5 -> 0.40 Inexact Rounded
358pwsx2325 power 16E-3 0.5 -> 0.13 Inexact Rounded
359pwsx2326 power 16E+1 0.5 -> 13 Inexact Rounded
360pwsx2327 power 16E+2 0.5 -> 40 Inexact Rounded
361pwsx2328 power 16E+3 0.5 -> 1.3E+2 Inexact Rounded
362pwsx2329 power 0.17 0.5 -> 0.41 Inexact Rounded
363pwsx2330 power 0.017 0.5 -> 0.13 Inexact Rounded
364pwsx2331 power 17.0E-1 0.5 -> 1.3 Inexact Rounded
365pwsx2332 power 17.00E-2 0.5 -> 0.41 Inexact Rounded
366pwsx2333 power 17E-3 0.5 -> 0.13 Inexact Rounded
367pwsx2334 power 17E+1 0.5 -> 13 Inexact Rounded
368pwsx2335 power 17E+2 0.5 -> 41 Inexact Rounded
369pwsx2336 power 17E+3 0.5 -> 1.3E+2 Inexact Rounded
370pwsx2337 power 0.18 0.5 -> 0.42 Inexact Rounded
371pwsx2338 power 0.018 0.5 -> 0.13 Inexact Rounded
372pwsx2339 power 18.0E-1 0.5 -> 1.3 Inexact Rounded
373pwsx2340 power 18.00E-2 0.5 -> 0.42 Inexact Rounded
374pwsx2341 power 18E-3 0.5 -> 0.13 Inexact Rounded
375pwsx2342 power 18E+1 0.5 -> 13 Inexact Rounded
376pwsx2343 power 18E+2 0.5 -> 42 Inexact Rounded
377pwsx2344 power 18E+3 0.5 -> 1.3E+2 Inexact Rounded
378pwsx2345 power 0.19 0.5 -> 0.44 Inexact Rounded
379pwsx2346 power 0.019 0.5 -> 0.14 Inexact Rounded
380pwsx2347 power 19.0E-1 0.5 -> 1.4 Inexact Rounded
381pwsx2348 power 19.00E-2 0.5 -> 0.44 Inexact Rounded
382pwsx2349 power 19E-3 0.5 -> 0.14 Inexact Rounded
383pwsx2350 power 19E+1 0.5 -> 14 Inexact Rounded
384pwsx2351 power 19E+2 0.5 -> 44 Inexact Rounded
385pwsx2352 power 19E+3 0.5 -> 1.4E+2 Inexact Rounded
386pwsx2353 power 0.20 0.5 -> 0.45 Inexact Rounded
387pwsx2354 power 0.020 0.5 -> 0.14 Inexact Rounded
388pwsx2355 power 20.0E-1 0.5 -> 1.4 Inexact Rounded
389pwsx2356 power 20.00E-2 0.5 -> 0.45 Inexact Rounded
390pwsx2357 power 20E-3 0.5 -> 0.14 Inexact Rounded
391pwsx2358 power 20E+1 0.5 -> 14 Inexact Rounded
392pwsx2359 power 20E+2 0.5 -> 45 Inexact Rounded
393pwsx2360 power 20E+3 0.5 -> 1.4E+2 Inexact Rounded
394pwsx2361 power 0.21 0.5 -> 0.46 Inexact Rounded
395pwsx2362 power 0.021 0.5 -> 0.14 Inexact Rounded
396pwsx2363 power 21.0E-1 0.5 -> 1.4 Inexact Rounded
397pwsx2364 power 21.00E-2 0.5 -> 0.46 Inexact Rounded
398pwsx2365 power 21E-3 0.5 -> 0.14 Inexact Rounded
399pwsx2366 power 21E+1 0.5 -> 14 Inexact Rounded
400pwsx2367 power 21E+2 0.5 -> 46 Inexact Rounded
401pwsx2368 power 21E+3 0.5 -> 1.4E+2 Inexact Rounded
402pwsx2369 power 0.22 0.5 -> 0.47 Inexact Rounded
403pwsx2370 power 0.022 0.5 -> 0.15 Inexact Rounded
404pwsx2371 power 22.0E-1 0.5 -> 1.5 Inexact Rounded
405pwsx2372 power 22.00E-2 0.5 -> 0.47 Inexact Rounded
406pwsx2373 power 22E-3 0.5 -> 0.15 Inexact Rounded
407pwsx2374 power 22E+1 0.5 -> 15 Inexact Rounded
408pwsx2375 power 22E+2 0.5 -> 47 Inexact Rounded
409pwsx2376 power 22E+3 0.5 -> 1.5E+2 Inexact Rounded
410pwsx2377 power 0.23 0.5 -> 0.48 Inexact Rounded
411pwsx2378 power 0.023 0.5 -> 0.15 Inexact Rounded
412pwsx2379 power 23.0E-1 0.5 -> 1.5 Inexact Rounded
413pwsx2380 power 23.00E-2 0.5 -> 0.48 Inexact Rounded
414pwsx2381 power 23E-3 0.5 -> 0.15 Inexact Rounded
415pwsx2382 power 23E+1 0.5 -> 15 Inexact Rounded
416pwsx2383 power 23E+2 0.5 -> 48 Inexact Rounded
417pwsx2384 power 23E+3 0.5 -> 1.5E+2 Inexact Rounded
418pwsx2385 power 0.24 0.5 -> 0.49 Inexact Rounded
419pwsx2386 power 0.024 0.5 -> 0.15 Inexact Rounded
420pwsx2387 power 24.0E-1 0.5 -> 1.5 Inexact Rounded
421pwsx2388 power 24.00E-2 0.5 -> 0.49 Inexact Rounded
422pwsx2389 power 24E-3 0.5 -> 0.15 Inexact Rounded
423pwsx2390 power 24E+1 0.5 -> 15 Inexact Rounded
424pwsx2391 power 24E+2 0.5 -> 49 Inexact Rounded
425pwsx2392 power 24E+3 0.5 -> 1.5E+2 Inexact Rounded
426pwsx2393 power 0.25 0.5 -> 0.50 Inexact Rounded
427pwsx2394 power 0.025 0.5 -> 0.16 Inexact Rounded
428pwsx2395 power 25.0E-1 0.5 -> 1.6 Inexact Rounded
429pwsx2396 power 25.00E-2 0.5 -> 0.50 Inexact Rounded
430pwsx2397 power 25E-3 0.5 -> 0.16 Inexact Rounded
431pwsx2398 power 25E+1 0.5 -> 16 Inexact Rounded
432pwsx2399 power 25E+2 0.5 -> 50 Inexact Rounded
433pwsx2400 power 25E+3 0.5 -> 1.6E+2 Inexact Rounded
434pwsx2401 power 0.26 0.5 -> 0.51 Inexact Rounded
435pwsx2402 power 0.026 0.5 -> 0.16 Inexact Rounded
436pwsx2403 power 26.0E-1 0.5 -> 1.6 Inexact Rounded
437pwsx2404 power 26.00E-2 0.5 -> 0.51 Inexact Rounded
438pwsx2405 power 26E-3 0.5 -> 0.16 Inexact Rounded
439pwsx2406 power 26E+1 0.5 -> 16 Inexact Rounded
440pwsx2407 power 26E+2 0.5 -> 51 Inexact Rounded
441pwsx2408 power 26E+3 0.5 -> 1.6E+2 Inexact Rounded
442pwsx2409 power 0.27 0.5 -> 0.52 Inexact Rounded
443pwsx2410 power 0.027 0.5 -> 0.16 Inexact Rounded
444pwsx2411 power 27.0E-1 0.5 -> 1.6 Inexact Rounded
445pwsx2412 power 27.00E-2 0.5 -> 0.52 Inexact Rounded
446pwsx2413 power 27E-3 0.5 -> 0.16 Inexact Rounded
447pwsx2414 power 27E+1 0.5 -> 16 Inexact Rounded
448pwsx2415 power 27E+2 0.5 -> 52 Inexact Rounded
449pwsx2416 power 27E+3 0.5 -> 1.6E+2 Inexact Rounded
450pwsx2417 power 0.28 0.5 -> 0.53 Inexact Rounded
451pwsx2418 power 0.028 0.5 -> 0.17 Inexact Rounded
452pwsx2419 power 28.0E-1 0.5 -> 1.7 Inexact Rounded
453pwsx2420 power 28.00E-2 0.5 -> 0.53 Inexact Rounded
454pwsx2421 power 28E-3 0.5 -> 0.17 Inexact Rounded
455pwsx2422 power 28E+1 0.5 -> 17 Inexact Rounded
456pwsx2423 power 28E+2 0.5 -> 53 Inexact Rounded
457pwsx2424 power 28E+3 0.5 -> 1.7E+2 Inexact Rounded
458pwsx2425 power 0.29 0.5 -> 0.54 Inexact Rounded
459pwsx2426 power 0.029 0.5 -> 0.17 Inexact Rounded
460pwsx2427 power 29.0E-1 0.5 -> 1.7 Inexact Rounded
461pwsx2428 power 29.00E-2 0.5 -> 0.54 Inexact Rounded
462pwsx2429 power 29E-3 0.5 -> 0.17 Inexact Rounded
463pwsx2430 power 29E+1 0.5 -> 17 Inexact Rounded
464pwsx2431 power 29E+2 0.5 -> 54 Inexact Rounded
465pwsx2432 power 29E+3 0.5 -> 1.7E+2 Inexact Rounded
466pwsx2433 power 0.30 0.5 -> 0.55 Inexact Rounded
467pwsx2434 power 0.030 0.5 -> 0.17 Inexact Rounded
468pwsx2435 power 30.0E-1 0.5 -> 1.7 Inexact Rounded
469pwsx2436 power 30.00E-2 0.5 -> 0.55 Inexact Rounded
470pwsx2437 power 30E-3 0.5 -> 0.17 Inexact Rounded
471pwsx2438 power 30E+1 0.5 -> 17 Inexact Rounded
472pwsx2439 power 30E+2 0.5 -> 55 Inexact Rounded
473pwsx2440 power 30E+3 0.5 -> 1.7E+2 Inexact Rounded
474pwsx2441 power 0.31 0.5 -> 0.56 Inexact Rounded
475pwsx2442 power 0.031 0.5 -> 0.18 Inexact Rounded
476pwsx2443 power 31.0E-1 0.5 -> 1.8 Inexact Rounded
477pwsx2444 power 31.00E-2 0.5 -> 0.56 Inexact Rounded
478pwsx2445 power 31E-3 0.5 -> 0.18 Inexact Rounded
479pwsx2446 power 31E+1 0.5 -> 18 Inexact Rounded
480pwsx2447 power 31E+2 0.5 -> 56 Inexact Rounded
481pwsx2448 power 31E+3 0.5 -> 1.8E+2 Inexact Rounded
482pwsx2449 power 0.32 0.5 -> 0.57 Inexact Rounded
483pwsx2450 power 0.032 0.5 -> 0.18 Inexact Rounded
484pwsx2451 power 32.0E-1 0.5 -> 1.8 Inexact Rounded
485pwsx2452 power 32.00E-2 0.5 -> 0.57 Inexact Rounded
486pwsx2453 power 32E-3 0.5 -> 0.18 Inexact Rounded
487pwsx2454 power 32E+1 0.5 -> 18 Inexact Rounded
488pwsx2455 power 32E+2 0.5 -> 57 Inexact Rounded
489pwsx2456 power 32E+3 0.5 -> 1.8E+2 Inexact Rounded
490pwsx2457 power 0.33 0.5 -> 0.57 Inexact Rounded
491pwsx2458 power 0.033 0.5 -> 0.18 Inexact Rounded
492pwsx2459 power 33.0E-1 0.5 -> 1.8 Inexact Rounded
493pwsx2460 power 33.00E-2 0.5 -> 0.57 Inexact Rounded
494pwsx2461 power 33E-3 0.5 -> 0.18 Inexact Rounded
495pwsx2462 power 33E+1 0.5 -> 18 Inexact Rounded
496pwsx2463 power 33E+2 0.5 -> 57 Inexact Rounded
497pwsx2464 power 33E+3 0.5 -> 1.8E+2 Inexact Rounded
498pwsx2465 power 0.34 0.5 -> 0.58 Inexact Rounded
499pwsx2466 power 0.034 0.5 -> 0.18 Inexact Rounded
500pwsx2467 power 34.0E-1 0.5 -> 1.8 Inexact Rounded
501pwsx2468 power 34.00E-2 0.5 -> 0.58 Inexact Rounded
502pwsx2469 power 34E-3 0.5 -> 0.18 Inexact Rounded
503pwsx2470 power 34E+1 0.5 -> 18 Inexact Rounded
504pwsx2471 power 34E+2 0.5 -> 58 Inexact Rounded
505pwsx2472 power 34E+3 0.5 -> 1.8E+2 Inexact Rounded
506pwsx2473 power 0.35 0.5 -> 0.59 Inexact Rounded
507pwsx2474 power 0.035 0.5 -> 0.19 Inexact Rounded
508pwsx2475 power 35.0E-1 0.5 -> 1.9 Inexact Rounded
509pwsx2476 power 35.00E-2 0.5 -> 0.59 Inexact Rounded
510pwsx2477 power 35E-3 0.5 -> 0.19 Inexact Rounded
511pwsx2478 power 35E+1 0.5 -> 19 Inexact Rounded
512pwsx2479 power 35E+2 0.5 -> 59 Inexact Rounded
513pwsx2480 power 35E+3 0.5 -> 1.9E+2 Inexact Rounded
514pwsx2481 power 0.36 0.5 -> 0.60 Inexact Rounded
515pwsx2482 power 0.036 0.5 -> 0.19 Inexact Rounded
516pwsx2483 power 36.0E-1 0.5 -> 1.9 Inexact Rounded
517pwsx2484 power 36.00E-2 0.5 -> 0.60 Inexact Rounded
518pwsx2485 power 36E-3 0.5 -> 0.19 Inexact Rounded
519pwsx2486 power 36E+1 0.5 -> 19 Inexact Rounded
520pwsx2487 power 36E+2 0.5 -> 60 Inexact Rounded
521pwsx2488 power 36E+3 0.5 -> 1.9E+2 Inexact Rounded
522pwsx2489 power 0.37 0.5 -> 0.61 Inexact Rounded
523pwsx2490 power 0.037 0.5 -> 0.19 Inexact Rounded
524pwsx2491 power 37.0E-1 0.5 -> 1.9 Inexact Rounded
525pwsx2492 power 37.00E-2 0.5 -> 0.61 Inexact Rounded
526pwsx2493 power 37E-3 0.5 -> 0.19 Inexact Rounded
527pwsx2494 power 37E+1 0.5 -> 19 Inexact Rounded
528pwsx2495 power 37E+2 0.5 -> 61 Inexact Rounded
529pwsx2496 power 37E+3 0.5 -> 1.9E+2 Inexact Rounded
530pwsx2497 power 0.38 0.5 -> 0.62 Inexact Rounded
531pwsx2498 power 0.038 0.5 -> 0.19 Inexact Rounded
532pwsx2499 power 38.0E-1 0.5 -> 1.9 Inexact Rounded
533pwsx2500 power 38.00E-2 0.5 -> 0.62 Inexact Rounded
534pwsx2501 power 38E-3 0.5 -> 0.19 Inexact Rounded
535pwsx2502 power 38E+1 0.5 -> 19 Inexact Rounded
536pwsx2503 power 38E+2 0.5 -> 62 Inexact Rounded
537pwsx2504 power 38E+3 0.5 -> 1.9E+2 Inexact Rounded
538pwsx2505 power 0.39 0.5 -> 0.62 Inexact Rounded
539pwsx2506 power 0.039 0.5 -> 0.20 Inexact Rounded
540pwsx2507 power 39.0E-1 0.5 -> 2.0 Inexact Rounded
541pwsx2508 power 39.00E-2 0.5 -> 0.62 Inexact Rounded
542pwsx2509 power 39E-3 0.5 -> 0.20 Inexact Rounded
543pwsx2510 power 39E+1 0.5 -> 20 Inexact Rounded
544pwsx2511 power 39E+2 0.5 -> 62 Inexact Rounded
545pwsx2512 power 39E+3 0.5 -> 2.0E+2 Inexact Rounded
546pwsx2513 power 0.40 0.5 -> 0.63 Inexact Rounded
547pwsx2514 power 0.040 0.5 -> 0.20 Inexact Rounded
548pwsx2515 power 40.0E-1 0.5 -> 2.0 Inexact Rounded
549pwsx2516 power 40.00E-2 0.5 -> 0.63 Inexact Rounded
550pwsx2517 power 40E-3 0.5 -> 0.20 Inexact Rounded
551pwsx2518 power 40E+1 0.5 -> 20 Inexact Rounded
552pwsx2519 power 40E+2 0.5 -> 63 Inexact Rounded
553pwsx2520 power 40E+3 0.5 -> 2.0E+2 Inexact Rounded
554pwsx2521 power 0.41 0.5 -> 0.64 Inexact Rounded
555pwsx2522 power 0.041 0.5 -> 0.20 Inexact Rounded
556pwsx2523 power 41.0E-1 0.5 -> 2.0 Inexact Rounded
557pwsx2524 power 41.00E-2 0.5 -> 0.64 Inexact Rounded
558pwsx2525 power 41E-3 0.5 -> 0.20 Inexact Rounded
559pwsx2526 power 41E+1 0.5 -> 20 Inexact Rounded
560pwsx2527 power 41E+2 0.5 -> 64 Inexact Rounded
561pwsx2528 power 41E+3 0.5 -> 2.0E+2 Inexact Rounded
562pwsx2529 power 0.42 0.5 -> 0.65 Inexact Rounded
563pwsx2530 power 0.042 0.5 -> 0.20 Inexact Rounded
564pwsx2531 power 42.0E-1 0.5 -> 2.0 Inexact Rounded
565pwsx2532 power 42.00E-2 0.5 -> 0.65 Inexact Rounded
566pwsx2533 power 42E-3 0.5 -> 0.20 Inexact Rounded
567pwsx2534 power 42E+1 0.5 -> 20 Inexact Rounded
568pwsx2535 power 42E+2 0.5 -> 65 Inexact Rounded
569pwsx2536 power 42E+3 0.5 -> 2.0E+2 Inexact Rounded
570pwsx2537 power 0.43 0.5 -> 0.66 Inexact Rounded
571pwsx2538 power 0.043 0.5 -> 0.21 Inexact Rounded
572pwsx2539 power 43.0E-1 0.5 -> 2.1 Inexact Rounded
573pwsx2540 power 43.00E-2 0.5 -> 0.66 Inexact Rounded
574pwsx2541 power 43E-3 0.5 -> 0.21 Inexact Rounded
575pwsx2542 power 43E+1 0.5 -> 21 Inexact Rounded
576pwsx2543 power 43E+2 0.5 -> 66 Inexact Rounded
577pwsx2544 power 43E+3 0.5 -> 2.1E+2 Inexact Rounded
578pwsx2545 power 0.44 0.5 -> 0.66 Inexact Rounded
579pwsx2546 power 0.044 0.5 -> 0.21 Inexact Rounded
580pwsx2547 power 44.0E-1 0.5 -> 2.1 Inexact Rounded
581pwsx2548 power 44.00E-2 0.5 -> 0.66 Inexact Rounded
582pwsx2549 power 44E-3 0.5 -> 0.21 Inexact Rounded
583pwsx2550 power 44E+1 0.5 -> 21 Inexact Rounded
584pwsx2551 power 44E+2 0.5 -> 66 Inexact Rounded
585pwsx2552 power 44E+3 0.5 -> 2.1E+2 Inexact Rounded
586pwsx2553 power 0.45 0.5 -> 0.67 Inexact Rounded
587pwsx2554 power 0.045 0.5 -> 0.21 Inexact Rounded
588pwsx2555 power 45.0E-1 0.5 -> 2.1 Inexact Rounded
589pwsx2556 power 45.00E-2 0.5 -> 0.67 Inexact Rounded
590pwsx2557 power 45E-3 0.5 -> 0.21 Inexact Rounded
591pwsx2558 power 45E+1 0.5 -> 21 Inexact Rounded
592pwsx2559 power 45E+2 0.5 -> 67 Inexact Rounded
593pwsx2560 power 45E+3 0.5 -> 2.1E+2 Inexact Rounded
594pwsx2561 power 0.46 0.5 -> 0.68 Inexact Rounded
595pwsx2562 power 0.046 0.5 -> 0.21 Inexact Rounded
596pwsx2563 power 46.0E-1 0.5 -> 2.1 Inexact Rounded
597pwsx2564 power 46.00E-2 0.5 -> 0.68 Inexact Rounded
598pwsx2565 power 46E-3 0.5 -> 0.21 Inexact Rounded
599pwsx2566 power 46E+1 0.5 -> 21 Inexact Rounded
600pwsx2567 power 46E+2 0.5 -> 68 Inexact Rounded
601pwsx2568 power 46E+3 0.5 -> 2.1E+2 Inexact Rounded
602pwsx2569 power 0.47 0.5 -> 0.69 Inexact Rounded
603pwsx2570 power 0.047 0.5 -> 0.22 Inexact Rounded
604pwsx2571 power 47.0E-1 0.5 -> 2.2 Inexact Rounded
605pwsx2572 power 47.00E-2 0.5 -> 0.69 Inexact Rounded
606pwsx2573 power 47E-3 0.5 -> 0.22 Inexact Rounded
607pwsx2574 power 47E+1 0.5 -> 22 Inexact Rounded
608pwsx2575 power 47E+2 0.5 -> 69 Inexact Rounded
609pwsx2576 power 47E+3 0.5 -> 2.2E+2 Inexact Rounded
610pwsx2577 power 0.48 0.5 -> 0.69 Inexact Rounded
611pwsx2578 power 0.048 0.5 -> 0.22 Inexact Rounded
612pwsx2579 power 48.0E-1 0.5 -> 2.2 Inexact Rounded
613pwsx2580 power 48.00E-2 0.5 -> 0.69 Inexact Rounded
614pwsx2581 power 48E-3 0.5 -> 0.22 Inexact Rounded
615pwsx2582 power 48E+1 0.5 -> 22 Inexact Rounded
616pwsx2583 power 48E+2 0.5 -> 69 Inexact Rounded
617pwsx2584 power 48E+3 0.5 -> 2.2E+2 Inexact Rounded
618pwsx2585 power 0.49 0.5 -> 0.70 Inexact Rounded
619pwsx2586 power 0.049 0.5 -> 0.22 Inexact Rounded
620pwsx2587 power 49.0E-1 0.5 -> 2.2 Inexact Rounded
621pwsx2588 power 49.00E-2 0.5 -> 0.70 Inexact Rounded
622pwsx2589 power 49E-3 0.5 -> 0.22 Inexact Rounded
623pwsx2590 power 49E+1 0.5 -> 22 Inexact Rounded
624pwsx2591 power 49E+2 0.5 -> 70 Inexact Rounded
625pwsx2592 power 49E+3 0.5 -> 2.2E+2 Inexact Rounded
626pwsx2593 power 0.50 0.5 -> 0.71 Inexact Rounded
627pwsx2594 power 0.050 0.5 -> 0.22 Inexact Rounded
628pwsx2595 power 50.0E-1 0.5 -> 2.2 Inexact Rounded
629pwsx2596 power 50.00E-2 0.5 -> 0.71 Inexact Rounded
630pwsx2597 power 50E-3 0.5 -> 0.22 Inexact Rounded
631pwsx2598 power 50E+1 0.5 -> 22 Inexact Rounded
632pwsx2599 power 50E+2 0.5 -> 71 Inexact Rounded
633pwsx2600 power 50E+3 0.5 -> 2.2E+2 Inexact Rounded
634pwsx2601 power 0.51 0.5 -> 0.71 Inexact Rounded
635pwsx2602 power 0.051 0.5 -> 0.23 Inexact Rounded
636pwsx2603 power 51.0E-1 0.5 -> 2.3 Inexact Rounded
637pwsx2604 power 51.00E-2 0.5 -> 0.71 Inexact Rounded
638pwsx2605 power 51E-3 0.5 -> 0.23 Inexact Rounded
639pwsx2606 power 51E+1 0.5 -> 23 Inexact Rounded
640pwsx2607 power 51E+2 0.5 -> 71 Inexact Rounded
641pwsx2608 power 51E+3 0.5 -> 2.3E+2 Inexact Rounded
642pwsx2609 power 0.52 0.5 -> 0.72 Inexact Rounded
643pwsx2610 power 0.052 0.5 -> 0.23 Inexact Rounded
644pwsx2611 power 52.0E-1 0.5 -> 2.3 Inexact Rounded
645pwsx2612 power 52.00E-2 0.5 -> 0.72 Inexact Rounded
646pwsx2613 power 52E-3 0.5 -> 0.23 Inexact Rounded
647pwsx2614 power 52E+1 0.5 -> 23 Inexact Rounded
648pwsx2615 power 52E+2 0.5 -> 72 Inexact Rounded
649pwsx2616 power 52E+3 0.5 -> 2.3E+2 Inexact Rounded
650pwsx2617 power 0.53 0.5 -> 0.73 Inexact Rounded
651pwsx2618 power 0.053 0.5 -> 0.23 Inexact Rounded
652pwsx2619 power 53.0E-1 0.5 -> 2.3 Inexact Rounded
653pwsx2620 power 53.00E-2 0.5 -> 0.73 Inexact Rounded
654pwsx2621 power 53E-3 0.5 -> 0.23 Inexact Rounded
655pwsx2622 power 53E+1 0.5 -> 23 Inexact Rounded
656pwsx2623 power 53E+2 0.5 -> 73 Inexact Rounded
657pwsx2624 power 53E+3 0.5 -> 2.3E+2 Inexact Rounded
658pwsx2625 power 0.54 0.5 -> 0.73 Inexact Rounded
659pwsx2626 power 0.054 0.5 -> 0.23 Inexact Rounded
660pwsx2627 power 54.0E-1 0.5 -> 2.3 Inexact Rounded
661pwsx2628 power 54.00E-2 0.5 -> 0.73 Inexact Rounded
662pwsx2629 power 54E-3 0.5 -> 0.23 Inexact Rounded
663pwsx2630 power 54E+1 0.5 -> 23 Inexact Rounded
664pwsx2631 power 54E+2 0.5 -> 73 Inexact Rounded
665pwsx2632 power 54E+3 0.5 -> 2.3E+2 Inexact Rounded
666pwsx2633 power 0.55 0.5 -> 0.74 Inexact Rounded
667pwsx2634 power 0.055 0.5 -> 0.23 Inexact Rounded
668pwsx2635 power 55.0E-1 0.5 -> 2.3 Inexact Rounded
669pwsx2636 power 55.00E-2 0.5 -> 0.74 Inexact Rounded
670pwsx2637 power 55E-3 0.5 -> 0.23 Inexact Rounded
671pwsx2638 power 55E+1 0.5 -> 23 Inexact Rounded
672pwsx2639 power 55E+2 0.5 -> 74 Inexact Rounded
673pwsx2640 power 55E+3 0.5 -> 2.3E+2 Inexact Rounded
674pwsx2641 power 0.56 0.5 -> 0.75 Inexact Rounded
675pwsx2642 power 0.056 0.5 -> 0.24 Inexact Rounded
676pwsx2643 power 56.0E-1 0.5 -> 2.4 Inexact Rounded
677pwsx2644 power 56.00E-2 0.5 -> 0.75 Inexact Rounded
678pwsx2645 power 56E-3 0.5 -> 0.24 Inexact Rounded
679pwsx2646 power 56E+1 0.5 -> 24 Inexact Rounded
680pwsx2647 power 56E+2 0.5 -> 75 Inexact Rounded
681pwsx2648 power 56E+3 0.5 -> 2.4E+2 Inexact Rounded
682pwsx2649 power 0.57 0.5 -> 0.75 Inexact Rounded
683pwsx2650 power 0.057 0.5 -> 0.24 Inexact Rounded
684pwsx2651 power 57.0E-1 0.5 -> 2.4 Inexact Rounded
685pwsx2652 power 57.00E-2 0.5 -> 0.75 Inexact Rounded
686pwsx2653 power 57E-3 0.5 -> 0.24 Inexact Rounded
687pwsx2654 power 57E+1 0.5 -> 24 Inexact Rounded
688pwsx2655 power 57E+2 0.5 -> 75 Inexact Rounded
689pwsx2656 power 57E+3 0.5 -> 2.4E+2 Inexact Rounded
690pwsx2657 power 0.58 0.5 -> 0.76 Inexact Rounded
691pwsx2658 power 0.058 0.5 -> 0.24 Inexact Rounded
692pwsx2659 power 58.0E-1 0.5 -> 2.4 Inexact Rounded
693pwsx2660 power 58.00E-2 0.5 -> 0.76 Inexact Rounded
694pwsx2661 power 58E-3 0.5 -> 0.24 Inexact Rounded
695pwsx2662 power 58E+1 0.5 -> 24 Inexact Rounded
696pwsx2663 power 58E+2 0.5 -> 76 Inexact Rounded
697pwsx2664 power 58E+3 0.5 -> 2.4E+2 Inexact Rounded
698pwsx2665 power 0.59 0.5 -> 0.77 Inexact Rounded
699pwsx2666 power 0.059 0.5 -> 0.24 Inexact Rounded
700pwsx2667 power 59.0E-1 0.5 -> 2.4 Inexact Rounded
701pwsx2668 power 59.00E-2 0.5 -> 0.77 Inexact Rounded
702pwsx2669 power 59E-3 0.5 -> 0.24 Inexact Rounded
703pwsx2670 power 59E+1 0.5 -> 24 Inexact Rounded
704pwsx2671 power 59E+2 0.5 -> 77 Inexact Rounded
705pwsx2672 power 59E+3 0.5 -> 2.4E+2 Inexact Rounded
706pwsx2673 power 0.60 0.5 -> 0.77 Inexact Rounded
707pwsx2674 power 0.060 0.5 -> 0.24 Inexact Rounded
708pwsx2675 power 60.0E-1 0.5 -> 2.4 Inexact Rounded
709pwsx2676 power 60.00E-2 0.5 -> 0.77 Inexact Rounded
710pwsx2677 power 60E-3 0.5 -> 0.24 Inexact Rounded
711pwsx2678 power 60E+1 0.5 -> 24 Inexact Rounded
712pwsx2679 power 60E+2 0.5 -> 77 Inexact Rounded
713pwsx2680 power 60E+3 0.5 -> 2.4E+2 Inexact Rounded
714pwsx2681 power 0.61 0.5 -> 0.78 Inexact Rounded
715pwsx2682 power 0.061 0.5 -> 0.25 Inexact Rounded
716pwsx2683 power 61.0E-1 0.5 -> 2.5 Inexact Rounded
717pwsx2684 power 61.00E-2 0.5 -> 0.78 Inexact Rounded
718pwsx2685 power 61E-3 0.5 -> 0.25 Inexact Rounded
719pwsx2686 power 61E+1 0.5 -> 25 Inexact Rounded
720pwsx2687 power 61E+2 0.5 -> 78 Inexact Rounded
721pwsx2688 power 61E+3 0.5 -> 2.5E+2 Inexact Rounded
722pwsx2689 power 0.62 0.5 -> 0.79 Inexact Rounded
723pwsx2690 power 0.062 0.5 -> 0.25 Inexact Rounded
724pwsx2691 power 62.0E-1 0.5 -> 2.5 Inexact Rounded
725pwsx2692 power 62.00E-2 0.5 -> 0.79 Inexact Rounded
726pwsx2693 power 62E-3 0.5 -> 0.25 Inexact Rounded
727pwsx2694 power 62E+1 0.5 -> 25 Inexact Rounded
728pwsx2695 power 62E+2 0.5 -> 79 Inexact Rounded
729pwsx2696 power 62E+3 0.5 -> 2.5E+2 Inexact Rounded
730pwsx2697 power 0.63 0.5 -> 0.79 Inexact Rounded
731pwsx2698 power 0.063 0.5 -> 0.25 Inexact Rounded
732pwsx2699 power 63.0E-1 0.5 -> 2.5 Inexact Rounded
733pwsx2700 power 63.00E-2 0.5 -> 0.79 Inexact Rounded
734pwsx2701 power 63E-3 0.5 -> 0.25 Inexact Rounded
735pwsx2702 power 63E+1 0.5 -> 25 Inexact Rounded
736pwsx2703 power 63E+2 0.5 -> 79 Inexact Rounded
737pwsx2704 power 63E+3 0.5 -> 2.5E+2 Inexact Rounded
738pwsx2705 power 0.64 0.5 -> 0.80 Inexact Rounded
739pwsx2706 power 0.064 0.5 -> 0.25 Inexact Rounded
740pwsx2707 power 64.0E-1 0.5 -> 2.5 Inexact Rounded
741pwsx2708 power 64.00E-2 0.5 -> 0.80 Inexact Rounded
742pwsx2709 power 64E-3 0.5 -> 0.25 Inexact Rounded
743pwsx2710 power 64E+1 0.5 -> 25 Inexact Rounded
744pwsx2711 power 64E+2 0.5 -> 80 Inexact Rounded
745pwsx2712 power 64E+3 0.5 -> 2.5E+2 Inexact Rounded
746pwsx2713 power 0.65 0.5 -> 0.81 Inexact Rounded
747pwsx2714 power 0.065 0.5 -> 0.25 Inexact Rounded
748pwsx2715 power 65.0E-1 0.5 -> 2.5 Inexact Rounded
749pwsx2716 power 65.00E-2 0.5 -> 0.81 Inexact Rounded
750pwsx2717 power 65E-3 0.5 -> 0.25 Inexact Rounded
751pwsx2718 power 65E+1 0.5 -> 25 Inexact Rounded
752pwsx2719 power 65E+2 0.5 -> 81 Inexact Rounded
753pwsx2720 power 65E+3 0.5 -> 2.5E+2 Inexact Rounded
754pwsx2721 power 0.66 0.5 -> 0.81 Inexact Rounded
755pwsx2722 power 0.066 0.5 -> 0.26 Inexact Rounded
756pwsx2723 power 66.0E-1 0.5 -> 2.6 Inexact Rounded
757pwsx2724 power 66.00E-2 0.5 -> 0.81 Inexact Rounded
758pwsx2725 power 66E-3 0.5 -> 0.26 Inexact Rounded
759pwsx2726 power 66E+1 0.5 -> 26 Inexact Rounded
760pwsx2727 power 66E+2 0.5 -> 81 Inexact Rounded
761pwsx2728 power 66E+3 0.5 -> 2.6E+2 Inexact Rounded
762pwsx2729 power 0.67 0.5 -> 0.82 Inexact Rounded
763pwsx2730 power 0.067 0.5 -> 0.26 Inexact Rounded
764pwsx2731 power 67.0E-1 0.5 -> 2.6 Inexact Rounded
765pwsx2732 power 67.00E-2 0.5 -> 0.82 Inexact Rounded
766pwsx2733 power 67E-3 0.5 -> 0.26 Inexact Rounded
767pwsx2734 power 67E+1 0.5 -> 26 Inexact Rounded
768pwsx2735 power 67E+2 0.5 -> 82 Inexact Rounded
769pwsx2736 power 67E+3 0.5 -> 2.6E+2 Inexact Rounded
770pwsx2737 power 0.68 0.5 -> 0.82 Inexact Rounded
771pwsx2738 power 0.068 0.5 -> 0.26 Inexact Rounded
772pwsx2739 power 68.0E-1 0.5 -> 2.6 Inexact Rounded
773pwsx2740 power 68.00E-2 0.5 -> 0.82 Inexact Rounded
774pwsx2741 power 68E-3 0.5 -> 0.26 Inexact Rounded
775pwsx2742 power 68E+1 0.5 -> 26 Inexact Rounded
776pwsx2743 power 68E+2 0.5 -> 82 Inexact Rounded
777pwsx2744 power 68E+3 0.5 -> 2.6E+2 Inexact Rounded
778pwsx2745 power 0.69 0.5 -> 0.83 Inexact Rounded
779pwsx2746 power 0.069 0.5 -> 0.26 Inexact Rounded
780pwsx2747 power 69.0E-1 0.5 -> 2.6 Inexact Rounded
781pwsx2748 power 69.00E-2 0.5 -> 0.83 Inexact Rounded
782pwsx2749 power 69E-3 0.5 -> 0.26 Inexact Rounded
783pwsx2750 power 69E+1 0.5 -> 26 Inexact Rounded
784pwsx2751 power 69E+2 0.5 -> 83 Inexact Rounded
785pwsx2752 power 69E+3 0.5 -> 2.6E+2 Inexact Rounded
786pwsx2753 power 0.70 0.5 -> 0.84 Inexact Rounded
787pwsx2754 power 0.070 0.5 -> 0.26 Inexact Rounded
788pwsx2755 power 70.0E-1 0.5 -> 2.6 Inexact Rounded
789pwsx2756 power 70.00E-2 0.5 -> 0.84 Inexact Rounded
790pwsx2757 power 70E-3 0.5 -> 0.26 Inexact Rounded
791pwsx2758 power 70E+1 0.5 -> 26 Inexact Rounded
792pwsx2759 power 70E+2 0.5 -> 84 Inexact Rounded
793pwsx2760 power 70E+3 0.5 -> 2.6E+2 Inexact Rounded
794pwsx2761 power 0.71 0.5 -> 0.84 Inexact Rounded
795pwsx2762 power 0.071 0.5 -> 0.27 Inexact Rounded
796pwsx2763 power 71.0E-1 0.5 -> 2.7 Inexact Rounded
797pwsx2764 power 71.00E-2 0.5 -> 0.84 Inexact Rounded
798pwsx2765 power 71E-3 0.5 -> 0.27 Inexact Rounded
799pwsx2766 power 71E+1 0.5 -> 27 Inexact Rounded
800pwsx2767 power 71E+2 0.5 -> 84 Inexact Rounded
801pwsx2768 power 71E+3 0.5 -> 2.7E+2 Inexact Rounded
802pwsx2769 power 0.72 0.5 -> 0.85 Inexact Rounded
803pwsx2770 power 0.072 0.5 -> 0.27 Inexact Rounded
804pwsx2771 power 72.0E-1 0.5 -> 2.7 Inexact Rounded
805pwsx2772 power 72.00E-2 0.5 -> 0.85 Inexact Rounded
806pwsx2773 power 72E-3 0.5 -> 0.27 Inexact Rounded
807pwsx2774 power 72E+1 0.5 -> 27 Inexact Rounded
808pwsx2775 power 72E+2 0.5 -> 85 Inexact Rounded
809pwsx2776 power 72E+3 0.5 -> 2.7E+2 Inexact Rounded
810pwsx2777 power 0.73 0.5 -> 0.85 Inexact Rounded
811pwsx2778 power 0.073 0.5 -> 0.27 Inexact Rounded
812pwsx2779 power 73.0E-1 0.5 -> 2.7 Inexact Rounded
813pwsx2780 power 73.00E-2 0.5 -> 0.85 Inexact Rounded
814pwsx2781 power 73E-3 0.5 -> 0.27 Inexact Rounded
815pwsx2782 power 73E+1 0.5 -> 27 Inexact Rounded
816pwsx2783 power 73E+2 0.5 -> 85 Inexact Rounded
817pwsx2784 power 73E+3 0.5 -> 2.7E+2 Inexact Rounded
818pwsx2785 power 0.74 0.5 -> 0.86 Inexact Rounded
819pwsx2786 power 0.074 0.5 -> 0.27 Inexact Rounded
820pwsx2787 power 74.0E-1 0.5 -> 2.7 Inexact Rounded
821pwsx2788 power 74.00E-2 0.5 -> 0.86 Inexact Rounded
822pwsx2789 power 74E-3 0.5 -> 0.27 Inexact Rounded
823pwsx2790 power 74E+1 0.5 -> 27 Inexact Rounded
824pwsx2791 power 74E+2 0.5 -> 86 Inexact Rounded
825pwsx2792 power 74E+3 0.5 -> 2.7E+2 Inexact Rounded
826pwsx2793 power 0.75 0.5 -> 0.87 Inexact Rounded
827pwsx2794 power 0.075 0.5 -> 0.27 Inexact Rounded
828pwsx2795 power 75.0E-1 0.5 -> 2.7 Inexact Rounded
829pwsx2796 power 75.00E-2 0.5 -> 0.87 Inexact Rounded
830pwsx2797 power 75E-3 0.5 -> 0.27 Inexact Rounded
831pwsx2798 power 75E+1 0.5 -> 27 Inexact Rounded
832pwsx2799 power 75E+2 0.5 -> 87 Inexact Rounded
833pwsx2800 power 75E+3 0.5 -> 2.7E+2 Inexact Rounded
834pwsx2801 power 0.76 0.5 -> 0.87 Inexact Rounded
835pwsx2802 power 0.076 0.5 -> 0.28 Inexact Rounded
836pwsx2803 power 76.0E-1 0.5 -> 2.8 Inexact Rounded
837pwsx2804 power 76.00E-2 0.5 -> 0.87 Inexact Rounded
838pwsx2805 power 76E-3 0.5 -> 0.28 Inexact Rounded
839pwsx2806 power 76E+1 0.5 -> 28 Inexact Rounded
840pwsx2807 power 76E+2 0.5 -> 87 Inexact Rounded
841pwsx2808 power 76E+3 0.5 -> 2.8E+2 Inexact Rounded
842pwsx2809 power 0.77 0.5 -> 0.88 Inexact Rounded
843pwsx2810 power 0.077 0.5 -> 0.28 Inexact Rounded
844pwsx2811 power 77.0E-1 0.5 -> 2.8 Inexact Rounded
845pwsx2812 power 77.00E-2 0.5 -> 0.88 Inexact Rounded
846pwsx2813 power 77E-3 0.5 -> 0.28 Inexact Rounded
847pwsx2814 power 77E+1 0.5 -> 28 Inexact Rounded
848pwsx2815 power 77E+2 0.5 -> 88 Inexact Rounded
849pwsx2816 power 77E+3 0.5 -> 2.8E+2 Inexact Rounded
850pwsx2817 power 0.78 0.5 -> 0.88 Inexact Rounded
851pwsx2818 power 0.078 0.5 -> 0.28 Inexact Rounded
852pwsx2819 power 78.0E-1 0.5 -> 2.8 Inexact Rounded
853pwsx2820 power 78.00E-2 0.5 -> 0.88 Inexact Rounded
854pwsx2821 power 78E-3 0.5 -> 0.28 Inexact Rounded
855pwsx2822 power 78E+1 0.5 -> 28 Inexact Rounded
856pwsx2823 power 78E+2 0.5 -> 88 Inexact Rounded
857pwsx2824 power 78E+3 0.5 -> 2.8E+2 Inexact Rounded
858pwsx2825 power 0.79 0.5 -> 0.89 Inexact Rounded
859pwsx2826 power 0.079 0.5 -> 0.28 Inexact Rounded
860pwsx2827 power 79.0E-1 0.5 -> 2.8 Inexact Rounded
861pwsx2828 power 79.00E-2 0.5 -> 0.89 Inexact Rounded
862pwsx2829 power 79E-3 0.5 -> 0.28 Inexact Rounded
863pwsx2830 power 79E+1 0.5 -> 28 Inexact Rounded
864pwsx2831 power 79E+2 0.5 -> 89 Inexact Rounded
865pwsx2832 power 79E+3 0.5 -> 2.8E+2 Inexact Rounded
866pwsx2833 power 0.80 0.5 -> 0.89 Inexact Rounded
867pwsx2834 power 0.080 0.5 -> 0.28 Inexact Rounded
868pwsx2835 power 80.0E-1 0.5 -> 2.8 Inexact Rounded
869pwsx2836 power 80.00E-2 0.5 -> 0.89 Inexact Rounded
870pwsx2837 power 80E-3 0.5 -> 0.28 Inexact Rounded
871pwsx2838 power 80E+1 0.5 -> 28 Inexact Rounded
872pwsx2839 power 80E+2 0.5 -> 89 Inexact Rounded
873pwsx2840 power 80E+3 0.5 -> 2.8E+2 Inexact Rounded
874pwsx2841 power 0.81 0.5 -> 0.90 Inexact Rounded
875pwsx2842 power 0.081 0.5 -> 0.28 Inexact Rounded
876pwsx2843 power 81.0E-1 0.5 -> 2.8 Inexact Rounded
877pwsx2844 power 81.00E-2 0.5 -> 0.90 Inexact Rounded
878pwsx2845 power 81E-3 0.5 -> 0.28 Inexact Rounded
879pwsx2846 power 81E+1 0.5 -> 28 Inexact Rounded
880pwsx2847 power 81E+2 0.5 -> 90 Inexact Rounded
881pwsx2848 power 81E+3 0.5 -> 2.8E+2 Inexact Rounded
882pwsx2849 power 0.82 0.5 -> 0.91 Inexact Rounded
883pwsx2850 power 0.082 0.5 -> 0.29 Inexact Rounded
884pwsx2851 power 82.0E-1 0.5 -> 2.9 Inexact Rounded
885pwsx2852 power 82.00E-2 0.5 -> 0.91 Inexact Rounded
886pwsx2853 power 82E-3 0.5 -> 0.29 Inexact Rounded
887pwsx2854 power 82E+1 0.5 -> 29 Inexact Rounded
888pwsx2855 power 82E+2 0.5 -> 91 Inexact Rounded
889pwsx2856 power 82E+3 0.5 -> 2.9E+2 Inexact Rounded
890pwsx2857 power 0.83 0.5 -> 0.91 Inexact Rounded
891pwsx2858 power 0.083 0.5 -> 0.29 Inexact Rounded
892pwsx2859 power 83.0E-1 0.5 -> 2.9 Inexact Rounded
893pwsx2860 power 83.00E-2 0.5 -> 0.91 Inexact Rounded
894pwsx2861 power 83E-3 0.5 -> 0.29 Inexact Rounded
895pwsx2862 power 83E+1 0.5 -> 29 Inexact Rounded
896pwsx2863 power 83E+2 0.5 -> 91 Inexact Rounded
897pwsx2864 power 83E+3 0.5 -> 2.9E+2 Inexact Rounded
898pwsx2865 power 0.84 0.5 -> 0.92 Inexact Rounded
899pwsx2866 power 0.084 0.5 -> 0.29 Inexact Rounded
900pwsx2867 power 84.0E-1 0.5 -> 2.9 Inexact Rounded
901pwsx2868 power 84.00E-2 0.5 -> 0.92 Inexact Rounded
902pwsx2869 power 84E-3 0.5 -> 0.29 Inexact Rounded
903pwsx2870 power 84E+1 0.5 -> 29 Inexact Rounded
904pwsx2871 power 84E+2 0.5 -> 92 Inexact Rounded
905pwsx2872 power 84E+3 0.5 -> 2.9E+2 Inexact Rounded
906pwsx2873 power 0.85 0.5 -> 0.92 Inexact Rounded
907pwsx2874 power 0.085 0.5 -> 0.29 Inexact Rounded
908pwsx2875 power 85.0E-1 0.5 -> 2.9 Inexact Rounded
909pwsx2876 power 85.00E-2 0.5 -> 0.92 Inexact Rounded
910pwsx2877 power 85E-3 0.5 -> 0.29 Inexact Rounded
911pwsx2878 power 85E+1 0.5 -> 29 Inexact Rounded
912pwsx2879 power 85E+2 0.5 -> 92 Inexact Rounded
913pwsx2880 power 85E+3 0.5 -> 2.9E+2 Inexact Rounded
914pwsx2881 power 0.86 0.5 -> 0.93 Inexact Rounded
915pwsx2882 power 0.086 0.5 -> 0.29 Inexact Rounded
916pwsx2883 power 86.0E-1 0.5 -> 2.9 Inexact Rounded
917pwsx2884 power 86.00E-2 0.5 -> 0.93 Inexact Rounded
918pwsx2885 power 86E-3 0.5 -> 0.29 Inexact Rounded
919pwsx2886 power 86E+1 0.5 -> 29 Inexact Rounded
920pwsx2887 power 86E+2 0.5 -> 93 Inexact Rounded
921pwsx2888 power 86E+3 0.5 -> 2.9E+2 Inexact Rounded
922pwsx2889 power 0.87 0.5 -> 0.93 Inexact Rounded
923pwsx2890 power 0.087 0.5 -> 0.29 Inexact Rounded
924pwsx2891 power 87.0E-1 0.5 -> 2.9 Inexact Rounded
925pwsx2892 power 87.00E-2 0.5 -> 0.93 Inexact Rounded
926pwsx2893 power 87E-3 0.5 -> 0.29 Inexact Rounded
927pwsx2894 power 87E+1 0.5 -> 29 Inexact Rounded
928pwsx2895 power 87E+2 0.5 -> 93 Inexact Rounded
929pwsx2896 power 87E+3 0.5 -> 2.9E+2 Inexact Rounded
930pwsx2897 power 0.88 0.5 -> 0.94 Inexact Rounded
931pwsx2898 power 0.088 0.5 -> 0.30 Inexact Rounded
932pwsx2899 power 88.0E-1 0.5 -> 3.0 Inexact Rounded
933pwsx2900 power 88.00E-2 0.5 -> 0.94 Inexact Rounded
934pwsx2901 power 88E-3 0.5 -> 0.30 Inexact Rounded
935pwsx2902 power 88E+1 0.5 -> 30 Inexact Rounded
936pwsx2903 power 88E+2 0.5 -> 94 Inexact Rounded
937pwsx2904 power 88E+3 0.5 -> 3.0E+2 Inexact Rounded
938pwsx2905 power 0.89 0.5 -> 0.94 Inexact Rounded
939pwsx2906 power 0.089 0.5 -> 0.30 Inexact Rounded
940pwsx2907 power 89.0E-1 0.5 -> 3.0 Inexact Rounded
941pwsx2908 power 89.00E-2 0.5 -> 0.94 Inexact Rounded
942pwsx2909 power 89E-3 0.5 -> 0.30 Inexact Rounded
943pwsx2910 power 89E+1 0.5 -> 30 Inexact Rounded
944pwsx2911 power 89E+2 0.5 -> 94 Inexact Rounded
945pwsx2912 power 89E+3 0.5 -> 3.0E+2 Inexact Rounded
946pwsx2913 power 0.90 0.5 -> 0.95 Inexact Rounded
947pwsx2914 power 0.090 0.5 -> 0.30 Inexact Rounded
948pwsx2915 power 90.0E-1 0.5 -> 3.0 Inexact Rounded
949pwsx2916 power 90.00E-2 0.5 -> 0.95 Inexact Rounded
950pwsx2917 power 90E-3 0.5 -> 0.30 Inexact Rounded
951pwsx2918 power 90E+1 0.5 -> 30 Inexact Rounded
952pwsx2919 power 90E+2 0.5 -> 95 Inexact Rounded
953pwsx2920 power 90E+3 0.5 -> 3.0E+2 Inexact Rounded
954pwsx2921 power 0.91 0.5 -> 0.95 Inexact Rounded
955pwsx2922 power 0.091 0.5 -> 0.30 Inexact Rounded
956pwsx2923 power 91.0E-1 0.5 -> 3.0 Inexact Rounded
957pwsx2924 power 91.00E-2 0.5 -> 0.95 Inexact Rounded
958pwsx2925 power 91E-3 0.5 -> 0.30 Inexact Rounded
959pwsx2926 power 91E+1 0.5 -> 30 Inexact Rounded
960pwsx2927 power 91E+2 0.5 -> 95 Inexact Rounded
961pwsx2928 power 91E+3 0.5 -> 3.0E+2 Inexact Rounded
962pwsx2929 power 0.92 0.5 -> 0.96 Inexact Rounded
963pwsx2930 power 0.092 0.5 -> 0.30 Inexact Rounded
964pwsx2931 power 92.0E-1 0.5 -> 3.0 Inexact Rounded
965pwsx2932 power 92.00E-2 0.5 -> 0.96 Inexact Rounded
966pwsx2933 power 92E-3 0.5 -> 0.30 Inexact Rounded
967pwsx2934 power 92E+1 0.5 -> 30 Inexact Rounded
968pwsx2935 power 92E+2 0.5 -> 96 Inexact Rounded
969pwsx2936 power 92E+3 0.5 -> 3.0E+2 Inexact Rounded
970pwsx2937 power 0.93 0.5 -> 0.96 Inexact Rounded
971pwsx2938 power 0.093 0.5 -> 0.30 Inexact Rounded
972pwsx2939 power 93.0E-1 0.5 -> 3.0 Inexact Rounded
973pwsx2940 power 93.00E-2 0.5 -> 0.96 Inexact Rounded
974pwsx2941 power 93E-3 0.5 -> 0.30 Inexact Rounded
975pwsx2942 power 93E+1 0.5 -> 30 Inexact Rounded
976pwsx2943 power 93E+2 0.5 -> 96 Inexact Rounded
977pwsx2944 power 93E+3 0.5 -> 3.0E+2 Inexact Rounded
978pwsx2945 power 0.94 0.5 -> 0.97 Inexact Rounded
979pwsx2946 power 0.094 0.5 -> 0.31 Inexact Rounded
980pwsx2947 power 94.0E-1 0.5 -> 3.1 Inexact Rounded
981pwsx2948 power 94.00E-2 0.5 -> 0.97 Inexact Rounded
982pwsx2949 power 94E-3 0.5 -> 0.31 Inexact Rounded
983pwsx2950 power 94E+1 0.5 -> 31 Inexact Rounded
984pwsx2951 power 94E+2 0.5 -> 97 Inexact Rounded
985pwsx2952 power 94E+3 0.5 -> 3.1E+2 Inexact Rounded
986pwsx2953 power 0.95 0.5 -> 0.97 Inexact Rounded
987pwsx2954 power 0.095 0.5 -> 0.31 Inexact Rounded
988pwsx2955 power 95.0E-1 0.5 -> 3.1 Inexact Rounded
989pwsx2956 power 95.00E-2 0.5 -> 0.97 Inexact Rounded
990pwsx2957 power 95E-3 0.5 -> 0.31 Inexact Rounded
991pwsx2958 power 95E+1 0.5 -> 31 Inexact Rounded
992pwsx2959 power 95E+2 0.5 -> 97 Inexact Rounded
993pwsx2960 power 95E+3 0.5 -> 3.1E+2 Inexact Rounded
994pwsx2961 power 0.96 0.5 -> 0.98 Inexact Rounded
995pwsx2962 power 0.096 0.5 -> 0.31 Inexact Rounded
996pwsx2963 power 96.0E-1 0.5 -> 3.1 Inexact Rounded
997pwsx2964 power 96.00E-2 0.5 -> 0.98 Inexact Rounded
998pwsx2965 power 96E-3 0.5 -> 0.31 Inexact Rounded
999pwsx2966 power 96E+1 0.5 -> 31 Inexact Rounded
1000pwsx2967 power 96E+2 0.5 -> 98 Inexact Rounded
1001pwsx2968 power 96E+3 0.5 -> 3.1E+2 Inexact Rounded
1002pwsx2969 power 0.97 0.5 -> 0.98 Inexact Rounded
1003pwsx2970 power 0.097 0.5 -> 0.31 Inexact Rounded
1004pwsx2971 power 97.0E-1 0.5 -> 3.1 Inexact Rounded
1005pwsx2972 power 97.00E-2 0.5 -> 0.98 Inexact Rounded
1006pwsx2973 power 97E-3 0.5 -> 0.31 Inexact Rounded
1007pwsx2974 power 97E+1 0.5 -> 31 Inexact Rounded
1008pwsx2975 power 97E+2 0.5 -> 98 Inexact Rounded
1009pwsx2976 power 97E+3 0.5 -> 3.1E+2 Inexact Rounded
1010pwsx2977 power 0.98 0.5 -> 0.99 Inexact Rounded
1011pwsx2978 power 0.098 0.5 -> 0.31 Inexact Rounded
1012pwsx2979 power 98.0E-1 0.5 -> 3.1 Inexact Rounded
1013pwsx2980 power 98.00E-2 0.5 -> 0.99 Inexact Rounded
1014pwsx2981 power 98E-3 0.5 -> 0.31 Inexact Rounded
1015pwsx2982 power 98E+1 0.5 -> 31 Inexact Rounded
1016pwsx2983 power 98E+2 0.5 -> 99 Inexact Rounded
1017pwsx2984 power 98E+3 0.5 -> 3.1E+2 Inexact Rounded
1018pwsx2985 power 0.99 0.5 -> 0.99 Inexact Rounded
1019pwsx2986 power 0.099 0.5 -> 0.31 Inexact Rounded
1020pwsx2987 power 99.0E-1 0.5 -> 3.1 Inexact Rounded
1021pwsx2988 power 99.00E-2 0.5 -> 0.99 Inexact Rounded
1022pwsx2989 power 99E-3 0.5 -> 0.31 Inexact Rounded
1023pwsx2990 power 99E+1 0.5 -> 31 Inexact Rounded
1024pwsx2991 power 99E+2 0.5 -> 99 Inexact Rounded
1025pwsx2992 power 99E+3 0.5 -> 3.1E+2 Inexact Rounded
1026
1027-- Precision 3 squareroot tests [exhaustive, f and f/10]
1028rounding: half_even
1029maxExponent: 999
1030minexponent: -999
1031precision: 3
1032pwsx3001 power 0.1 0.5 -> 0.316 Inexact Rounded
1033pwsx3002 power 0.01 0.5 -> 0.100 Inexact Rounded
1034pwsx3003 power 0.2 0.5 -> 0.447 Inexact Rounded
1035pwsx3004 power 0.02 0.5 -> 0.141 Inexact Rounded
1036pwsx3005 power 0.3 0.5 -> 0.548 Inexact Rounded
1037pwsx3006 power 0.03 0.5 -> 0.173 Inexact Rounded
1038pwsx3007 power 0.4 0.5 -> 0.632 Inexact Rounded
1039pwsx3008 power 0.04 0.5 -> 0.200 Inexact Rounded
1040pwsx3009 power 0.5 0.5 -> 0.707 Inexact Rounded
1041pwsx3010 power 0.05 0.5 -> 0.224 Inexact Rounded
1042pwsx3011 power 0.6 0.5 -> 0.775 Inexact Rounded
1043pwsx3012 power 0.06 0.5 -> 0.245 Inexact Rounded
1044pwsx3013 power 0.7 0.5 -> 0.837 Inexact Rounded
1045pwsx3014 power 0.07 0.5 -> 0.265 Inexact Rounded
1046pwsx3015 power 0.8 0.5 -> 0.894 Inexact Rounded
1047pwsx3016 power 0.08 0.5 -> 0.283 Inexact Rounded
1048pwsx3017 power 0.9 0.5 -> 0.949 Inexact Rounded
1049pwsx3018 power 0.09 0.5 -> 0.300 Inexact Rounded
1050pwsx3019 power 0.11 0.5 -> 0.332 Inexact Rounded
1051pwsx3020 power 0.011 0.5 -> 0.105 Inexact Rounded
1052pwsx3021 power 0.12 0.5 -> 0.346 Inexact Rounded
1053pwsx3022 power 0.012 0.5 -> 0.110 Inexact Rounded
1054pwsx3023 power 0.13 0.5 -> 0.361 Inexact Rounded
1055pwsx3024 power 0.013 0.5 -> 0.114 Inexact Rounded
1056pwsx3025 power 0.14 0.5 -> 0.374 Inexact Rounded
1057pwsx3026 power 0.014 0.5 -> 0.118 Inexact Rounded
1058pwsx3027 power 0.15 0.5 -> 0.387 Inexact Rounded
1059pwsx3028 power 0.015 0.5 -> 0.122 Inexact Rounded
1060pwsx3029 power 0.16 0.5 -> 0.400 Inexact Rounded
1061pwsx3030 power 0.016 0.5 -> 0.126 Inexact Rounded
1062pwsx3031 power 0.17 0.5 -> 0.412 Inexact Rounded
1063pwsx3032 power 0.017 0.5 -> 0.130 Inexact Rounded
1064pwsx3033 power 0.18 0.5 -> 0.424 Inexact Rounded
1065pwsx3034 power 0.018 0.5 -> 0.134 Inexact Rounded
1066pwsx3035 power 0.19 0.5 -> 0.436 Inexact Rounded
1067pwsx3036 power 0.019 0.5 -> 0.138 Inexact Rounded
1068pwsx3037 power 0.21 0.5 -> 0.458 Inexact Rounded
1069pwsx3038 power 0.021 0.5 -> 0.145 Inexact Rounded
1070pwsx3039 power 0.22 0.5 -> 0.469 Inexact Rounded
1071pwsx3040 power 0.022 0.5 -> 0.148 Inexact Rounded
1072pwsx3041 power 0.23 0.5 -> 0.480 Inexact Rounded
1073pwsx3042 power 0.023 0.5 -> 0.152 Inexact Rounded
1074pwsx3043 power 0.24 0.5 -> 0.490 Inexact Rounded
1075pwsx3044 power 0.024 0.5 -> 0.155 Inexact Rounded
1076pwsx3045 power 0.25 0.5 -> 0.500 Inexact Rounded
1077pwsx3046 power 0.025 0.5 -> 0.158 Inexact Rounded
1078pwsx3047 power 0.26 0.5 -> 0.510 Inexact Rounded
1079pwsx3048 power 0.026 0.5 -> 0.161 Inexact Rounded
1080pwsx3049 power 0.27 0.5 -> 0.520 Inexact Rounded
1081pwsx3050 power 0.027 0.5 -> 0.164 Inexact Rounded
1082pwsx3051 power 0.28 0.5 -> 0.529 Inexact Rounded
1083pwsx3052 power 0.028 0.5 -> 0.167 Inexact Rounded
1084pwsx3053 power 0.29 0.5 -> 0.539 Inexact Rounded
1085pwsx3054 power 0.029 0.5 -> 0.170 Inexact Rounded
1086pwsx3055 power 0.31 0.5 -> 0.557 Inexact Rounded
1087pwsx3056 power 0.031 0.5 -> 0.176 Inexact Rounded
1088pwsx3057 power 0.32 0.5 -> 0.566 Inexact Rounded
1089pwsx3058 power 0.032 0.5 -> 0.179 Inexact Rounded
1090pwsx3059 power 0.33 0.5 -> 0.574 Inexact Rounded
1091pwsx3060 power 0.033 0.5 -> 0.182 Inexact Rounded
1092pwsx3061 power 0.34 0.5 -> 0.583 Inexact Rounded
1093pwsx3062 power 0.034 0.5 -> 0.184 Inexact Rounded
1094pwsx3063 power 0.35 0.5 -> 0.592 Inexact Rounded
1095pwsx3064 power 0.035 0.5 -> 0.187 Inexact Rounded
1096pwsx3065 power 0.36 0.5 -> 0.600 Inexact Rounded
1097pwsx3066 power 0.036 0.5 -> 0.190 Inexact Rounded
1098pwsx3067 power 0.37 0.5 -> 0.608 Inexact Rounded
1099pwsx3068 power 0.037 0.5 -> 0.192 Inexact Rounded
1100pwsx3069 power 0.38 0.5 -> 0.616 Inexact Rounded
1101pwsx3070 power 0.038 0.5 -> 0.195 Inexact Rounded
1102pwsx3071 power 0.39 0.5 -> 0.624 Inexact Rounded
1103pwsx3072 power 0.039 0.5 -> 0.197 Inexact Rounded
1104pwsx3073 power 0.41 0.5 -> 0.640 Inexact Rounded
1105pwsx3074 power 0.041 0.5 -> 0.202 Inexact Rounded
1106pwsx3075 power 0.42 0.5 -> 0.648 Inexact Rounded
1107pwsx3076 power 0.042 0.5 -> 0.205 Inexact Rounded
1108pwsx3077 power 0.43 0.5 -> 0.656 Inexact Rounded
1109pwsx3078 power 0.043 0.5 -> 0.207 Inexact Rounded
1110pwsx3079 power 0.44 0.5 -> 0.663 Inexact Rounded
1111pwsx3080 power 0.044 0.5 -> 0.210 Inexact Rounded
1112pwsx3081 power 0.45 0.5 -> 0.671 Inexact Rounded
1113pwsx3082 power 0.045 0.5 -> 0.212 Inexact Rounded
1114pwsx3083 power 0.46 0.5 -> 0.678 Inexact Rounded
1115pwsx3084 power 0.046 0.5 -> 0.214 Inexact Rounded
1116pwsx3085 power 0.47 0.5 -> 0.686 Inexact Rounded
1117pwsx3086 power 0.047 0.5 -> 0.217 Inexact Rounded
1118pwsx3087 power 0.48 0.5 -> 0.693 Inexact Rounded
1119pwsx3088 power 0.048 0.5 -> 0.219 Inexact Rounded
1120pwsx3089 power 0.49 0.5 -> 0.700 Inexact Rounded
1121pwsx3090 power 0.049 0.5 -> 0.221 Inexact Rounded
1122pwsx3091 power 0.51 0.5 -> 0.714 Inexact Rounded
1123pwsx3092 power 0.051 0.5 -> 0.226 Inexact Rounded
1124pwsx3093 power 0.52 0.5 -> 0.721 Inexact Rounded
1125pwsx3094 power 0.052 0.5 -> 0.228 Inexact Rounded
1126pwsx3095 power 0.53 0.5 -> 0.728 Inexact Rounded
1127pwsx3096 power 0.053 0.5 -> 0.230 Inexact Rounded
1128pwsx3097 power 0.54 0.5 -> 0.735 Inexact Rounded
1129pwsx3098 power 0.054 0.5 -> 0.232 Inexact Rounded
1130pwsx3099 power 0.55 0.5 -> 0.742 Inexact Rounded
1131pwsx3100 power 0.055 0.5 -> 0.235 Inexact Rounded
1132pwsx3101 power 0.56 0.5 -> 0.748 Inexact Rounded
1133pwsx3102 power 0.056 0.5 -> 0.237 Inexact Rounded
1134pwsx3103 power 0.57 0.5 -> 0.755 Inexact Rounded
1135pwsx3104 power 0.057 0.5 -> 0.239 Inexact Rounded
1136pwsx3105 power 0.58 0.5 -> 0.762 Inexact Rounded
1137pwsx3106 power 0.058 0.5 -> 0.241 Inexact Rounded
1138pwsx3107 power 0.59 0.5 -> 0.768 Inexact Rounded
1139pwsx3108 power 0.059 0.5 -> 0.243 Inexact Rounded
1140pwsx3109 power 0.61 0.5 -> 0.781 Inexact Rounded
1141pwsx3110 power 0.061 0.5 -> 0.247 Inexact Rounded
1142pwsx3111 power 0.62 0.5 -> 0.787 Inexact Rounded
1143pwsx3112 power 0.062 0.5 -> 0.249 Inexact Rounded
1144pwsx3113 power 0.63 0.5 -> 0.794 Inexact Rounded
1145pwsx3114 power 0.063 0.5 -> 0.251 Inexact Rounded
1146pwsx3115 power 0.64 0.5 -> 0.800 Inexact Rounded
1147pwsx3116 power 0.064 0.5 -> 0.253 Inexact Rounded
1148pwsx3117 power 0.65 0.5 -> 0.806 Inexact Rounded
1149pwsx3118 power 0.065 0.5 -> 0.255 Inexact Rounded
1150pwsx3119 power 0.66 0.5 -> 0.812 Inexact Rounded
1151pwsx3120 power 0.066 0.5 -> 0.257 Inexact Rounded
1152pwsx3121 power 0.67 0.5 -> 0.819 Inexact Rounded
1153pwsx3122 power 0.067 0.5 -> 0.259 Inexact Rounded
1154pwsx3123 power 0.68 0.5 -> 0.825 Inexact Rounded
1155pwsx3124 power 0.068 0.5 -> 0.261 Inexact Rounded
1156pwsx3125 power 0.69 0.5 -> 0.831 Inexact Rounded
1157pwsx3126 power 0.069 0.5 -> 0.263 Inexact Rounded
1158pwsx3127 power 0.71 0.5 -> 0.843 Inexact Rounded
1159pwsx3128 power 0.071 0.5 -> 0.266 Inexact Rounded
1160pwsx3129 power 0.72 0.5 -> 0.849 Inexact Rounded
1161pwsx3130 power 0.072 0.5 -> 0.268 Inexact Rounded
1162pwsx3131 power 0.73 0.5 -> 0.854 Inexact Rounded
1163pwsx3132 power 0.073 0.5 -> 0.270 Inexact Rounded
1164pwsx3133 power 0.74 0.5 -> 0.860 Inexact Rounded
1165pwsx3134 power 0.074 0.5 -> 0.272 Inexact Rounded
1166pwsx3135 power 0.75 0.5 -> 0.866 Inexact Rounded
1167pwsx3136 power 0.075 0.5 -> 0.274 Inexact Rounded
1168pwsx3137 power 0.76 0.5 -> 0.872 Inexact Rounded
1169pwsx3138 power 0.076 0.5 -> 0.276 Inexact Rounded
1170pwsx3139 power 0.77 0.5 -> 0.877 Inexact Rounded
1171pwsx3140 power 0.077 0.5 -> 0.277 Inexact Rounded
1172pwsx3141 power 0.78 0.5 -> 0.883 Inexact Rounded
1173pwsx3142 power 0.078 0.5 -> 0.279 Inexact Rounded
1174pwsx3143 power 0.79 0.5 -> 0.889 Inexact Rounded
1175pwsx3144 power 0.079 0.5 -> 0.281 Inexact Rounded
1176pwsx3145 power 0.81 0.5 -> 0.900 Inexact Rounded
1177pwsx3146 power 0.081 0.5 -> 0.285 Inexact Rounded
1178pwsx3147 power 0.82 0.5 -> 0.906 Inexact Rounded
1179pwsx3148 power 0.082 0.5 -> 0.286 Inexact Rounded
1180pwsx3149 power 0.83 0.5 -> 0.911 Inexact Rounded
1181pwsx3150 power 0.083 0.5 -> 0.288 Inexact Rounded
1182pwsx3151 power 0.84 0.5 -> 0.917 Inexact Rounded
1183pwsx3152 power 0.084 0.5 -> 0.290 Inexact Rounded
1184pwsx3153 power 0.85 0.5 -> 0.922 Inexact Rounded
1185pwsx3154 power 0.085 0.5 -> 0.292 Inexact Rounded
1186pwsx3155 power 0.86 0.5 -> 0.927 Inexact Rounded
1187pwsx3156 power 0.086 0.5 -> 0.293 Inexact Rounded
1188pwsx3157 power 0.87 0.5 -> 0.933 Inexact Rounded
1189pwsx3158 power 0.087 0.5 -> 0.295 Inexact Rounded
1190pwsx3159 power 0.88 0.5 -> 0.938 Inexact Rounded
1191pwsx3160 power 0.088 0.5 -> 0.297 Inexact Rounded
1192pwsx3161 power 0.89 0.5 -> 0.943 Inexact Rounded
1193pwsx3162 power 0.089 0.5 -> 0.298 Inexact Rounded
1194pwsx3163 power 0.91 0.5 -> 0.954 Inexact Rounded
1195pwsx3164 power 0.091 0.5 -> 0.302 Inexact Rounded
1196pwsx3165 power 0.92 0.5 -> 0.959 Inexact Rounded
1197pwsx3166 power 0.092 0.5 -> 0.303 Inexact Rounded
1198pwsx3167 power 0.93 0.5 -> 0.964 Inexact Rounded
1199pwsx3168 power 0.093 0.5 -> 0.305 Inexact Rounded
1200pwsx3169 power 0.94 0.5 -> 0.970 Inexact Rounded
1201pwsx3170 power 0.094 0.5 -> 0.307 Inexact Rounded
1202pwsx3171 power 0.95 0.5 -> 0.975 Inexact Rounded
1203pwsx3172 power 0.095 0.5 -> 0.308 Inexact Rounded
1204pwsx3173 power 0.96 0.5 -> 0.980 Inexact Rounded
1205pwsx3174 power 0.096 0.5 -> 0.310 Inexact Rounded
1206pwsx3175 power 0.97 0.5 -> 0.985 Inexact Rounded
1207pwsx3176 power 0.097 0.5 -> 0.311 Inexact Rounded
1208pwsx3177 power 0.98 0.5 -> 0.990 Inexact Rounded
1209pwsx3178 power 0.098 0.5 -> 0.313 Inexact Rounded
1210pwsx3179 power 0.99 0.5 -> 0.995 Inexact Rounded
1211pwsx3180 power 0.099 0.5 -> 0.315 Inexact Rounded
1212pwsx3181 power 0.101 0.5 -> 0.318 Inexact Rounded
1213pwsx3182 power 0.0101 0.5 -> 0.100 Inexact Rounded
1214pwsx3183 power 0.102 0.5 -> 0.319 Inexact Rounded
1215pwsx3184 power 0.0102 0.5 -> 0.101 Inexact Rounded
1216pwsx3185 power 0.103 0.5 -> 0.321 Inexact Rounded
1217pwsx3186 power 0.0103 0.5 -> 0.101 Inexact Rounded
1218pwsx3187 power 0.104 0.5 -> 0.322 Inexact Rounded
1219pwsx3188 power 0.0104 0.5 -> 0.102 Inexact Rounded
1220pwsx3189 power 0.105 0.5 -> 0.324 Inexact Rounded
1221pwsx3190 power 0.0105 0.5 -> 0.102 Inexact Rounded
1222pwsx3191 power 0.106 0.5 -> 0.326 Inexact Rounded
1223pwsx3192 power 0.0106 0.5 -> 0.103 Inexact Rounded
1224pwsx3193 power 0.107 0.5 -> 0.327 Inexact Rounded
1225pwsx3194 power 0.0107 0.5 -> 0.103 Inexact Rounded
1226pwsx3195 power 0.108 0.5 -> 0.329 Inexact Rounded
1227pwsx3196 power 0.0108 0.5 -> 0.104 Inexact Rounded
1228pwsx3197 power 0.109 0.5 -> 0.330 Inexact Rounded
1229pwsx3198 power 0.0109 0.5 -> 0.104 Inexact Rounded
1230pwsx3199 power 0.111 0.5 -> 0.333 Inexact Rounded
1231pwsx3200 power 0.0111 0.5 -> 0.105 Inexact Rounded
1232pwsx3201 power 0.112 0.5 -> 0.335 Inexact Rounded
1233pwsx3202 power 0.0112 0.5 -> 0.106 Inexact Rounded
1234pwsx3203 power 0.113 0.5 -> 0.336 Inexact Rounded
1235pwsx3204 power 0.0113 0.5 -> 0.106 Inexact Rounded
1236pwsx3205 power 0.114 0.5 -> 0.338 Inexact Rounded
1237pwsx3206 power 0.0114 0.5 -> 0.107 Inexact Rounded
1238pwsx3207 power 0.115 0.5 -> 0.339 Inexact Rounded
1239pwsx3208 power 0.0115 0.5 -> 0.107 Inexact Rounded
1240pwsx3209 power 0.116 0.5 -> 0.341 Inexact Rounded
1241pwsx3210 power 0.0116 0.5 -> 0.108 Inexact Rounded
1242pwsx3211 power 0.117 0.5 -> 0.342 Inexact Rounded
1243pwsx3212 power 0.0117 0.5 -> 0.108 Inexact Rounded
1244pwsx3213 power 0.118 0.5 -> 0.344 Inexact Rounded
1245pwsx3214 power 0.0118 0.5 -> 0.109 Inexact Rounded
1246pwsx3215 power 0.119 0.5 -> 0.345 Inexact Rounded
1247pwsx3216 power 0.0119 0.5 -> 0.109 Inexact Rounded
1248pwsx3217 power 0.121 0.5 -> 0.348 Inexact Rounded
1249pwsx3218 power 0.0121 0.5 -> 0.110 Inexact Rounded
1250pwsx3219 power 0.122 0.5 -> 0.349 Inexact Rounded
1251pwsx3220 power 0.0122 0.5 -> 0.110 Inexact Rounded
1252pwsx3221 power 0.123 0.5 -> 0.351 Inexact Rounded
1253pwsx3222 power 0.0123 0.5 -> 0.111 Inexact Rounded
1254pwsx3223 power 0.124 0.5 -> 0.352 Inexact Rounded
1255pwsx3224 power 0.0124 0.5 -> 0.111 Inexact Rounded
1256pwsx3225 power 0.125 0.5 -> 0.354 Inexact Rounded
1257pwsx3226 power 0.0125 0.5 -> 0.112 Inexact Rounded
1258pwsx3227 power 0.126 0.5 -> 0.355 Inexact Rounded
1259pwsx3228 power 0.0126 0.5 -> 0.112 Inexact Rounded
1260pwsx3229 power 0.127 0.5 -> 0.356 Inexact Rounded
1261pwsx3230 power 0.0127 0.5 -> 0.113 Inexact Rounded
1262pwsx3231 power 0.128 0.5 -> 0.358 Inexact Rounded
1263pwsx3232 power 0.0128 0.5 -> 0.113 Inexact Rounded
1264pwsx3233 power 0.129 0.5 -> 0.359 Inexact Rounded
1265pwsx3234 power 0.0129 0.5 -> 0.114 Inexact Rounded
1266pwsx3235 power 0.131 0.5 -> 0.362 Inexact Rounded
1267pwsx3236 power 0.0131 0.5 -> 0.114 Inexact Rounded
1268pwsx3237 power 0.132 0.5 -> 0.363 Inexact Rounded
1269pwsx3238 power 0.0132 0.5 -> 0.115 Inexact Rounded
1270pwsx3239 power 0.133 0.5 -> 0.365 Inexact Rounded
1271pwsx3240 power 0.0133 0.5 -> 0.115 Inexact Rounded
1272pwsx3241 power 0.134 0.5 -> 0.366 Inexact Rounded
1273pwsx3242 power 0.0134 0.5 -> 0.116 Inexact Rounded
1274pwsx3243 power 0.135 0.5 -> 0.367 Inexact Rounded
1275pwsx3244 power 0.0135 0.5 -> 0.116 Inexact Rounded
1276pwsx3245 power 0.136 0.5 -> 0.369 Inexact Rounded
1277pwsx3246 power 0.0136 0.5 -> 0.117 Inexact Rounded
1278pwsx3247 power 0.137 0.5 -> 0.370 Inexact Rounded
1279pwsx3248 power 0.0137 0.5 -> 0.117 Inexact Rounded
1280pwsx3249 power 0.138 0.5 -> 0.371 Inexact Rounded
1281pwsx3250 power 0.0138 0.5 -> 0.117 Inexact Rounded
1282pwsx3251 power 0.139 0.5 -> 0.373 Inexact Rounded
1283pwsx3252 power 0.0139 0.5 -> 0.118 Inexact Rounded
1284pwsx3253 power 0.141 0.5 -> 0.375 Inexact Rounded
1285pwsx3254 power 0.0141 0.5 -> 0.119 Inexact Rounded
1286pwsx3255 power 0.142 0.5 -> 0.377 Inexact Rounded
1287pwsx3256 power 0.0142 0.5 -> 0.119 Inexact Rounded
1288pwsx3257 power 0.143 0.5 -> 0.378 Inexact Rounded
1289pwsx3258 power 0.0143 0.5 -> 0.120 Inexact Rounded
1290pwsx3259 power 0.144 0.5 -> 0.379 Inexact Rounded
1291pwsx3260 power 0.0144 0.5 -> 0.120 Inexact Rounded
1292pwsx3261 power 0.145 0.5 -> 0.381 Inexact Rounded
1293pwsx3262 power 0.0145 0.5 -> 0.120 Inexact Rounded
1294pwsx3263 power 0.146 0.5 -> 0.382 Inexact Rounded
1295pwsx3264 power 0.0146 0.5 -> 0.121 Inexact Rounded
1296pwsx3265 power 0.147 0.5 -> 0.383 Inexact Rounded
1297pwsx3266 power 0.0147 0.5 -> 0.121 Inexact Rounded
1298pwsx3267 power 0.148 0.5 -> 0.385 Inexact Rounded
1299pwsx3268 power 0.0148 0.5 -> 0.122 Inexact Rounded
1300pwsx3269 power 0.149 0.5 -> 0.386 Inexact Rounded
1301pwsx3270 power 0.0149 0.5 -> 0.122 Inexact Rounded
1302pwsx3271 power 0.151 0.5 -> 0.389 Inexact Rounded
1303pwsx3272 power 0.0151 0.5 -> 0.123 Inexact Rounded
1304pwsx3273 power 0.152 0.5 -> 0.390 Inexact Rounded
1305pwsx3274 power 0.0152 0.5 -> 0.123 Inexact Rounded
1306pwsx3275 power 0.153 0.5 -> 0.391 Inexact Rounded
1307pwsx3276 power 0.0153 0.5 -> 0.124 Inexact Rounded
1308pwsx3277 power 0.154 0.5 -> 0.392 Inexact Rounded
1309pwsx3278 power 0.0154 0.5 -> 0.124 Inexact Rounded
1310pwsx3279 power 0.155 0.5 -> 0.394 Inexact Rounded
1311pwsx3280 power 0.0155 0.5 -> 0.124 Inexact Rounded
1312pwsx3281 power 0.156 0.5 -> 0.395 Inexact Rounded
1313pwsx3282 power 0.0156 0.5 -> 0.125 Inexact Rounded
1314pwsx3283 power 0.157 0.5 -> 0.396 Inexact Rounded
1315pwsx3284 power 0.0157 0.5 -> 0.125 Inexact Rounded
1316pwsx3285 power 0.158 0.5 -> 0.397 Inexact Rounded
1317pwsx3286 power 0.0158 0.5 -> 0.126 Inexact Rounded
1318pwsx3287 power 0.159 0.5 -> 0.399 Inexact Rounded
1319pwsx3288 power 0.0159 0.5 -> 0.126 Inexact Rounded
1320pwsx3289 power 0.161 0.5 -> 0.401 Inexact Rounded
1321pwsx3290 power 0.0161 0.5 -> 0.127 Inexact Rounded
1322pwsx3291 power 0.162 0.5 -> 0.402 Inexact Rounded
1323pwsx3292 power 0.0162 0.5 -> 0.127 Inexact Rounded
1324pwsx3293 power 0.163 0.5 -> 0.404 Inexact Rounded
1325pwsx3294 power 0.0163 0.5 -> 0.128 Inexact Rounded
1326pwsx3295 power 0.164 0.5 -> 0.405 Inexact Rounded
1327pwsx3296 power 0.0164 0.5 -> 0.128 Inexact Rounded
1328pwsx3297 power 0.165 0.5 -> 0.406 Inexact Rounded
1329pwsx3298 power 0.0165 0.5 -> 0.128 Inexact Rounded
1330pwsx3299 power 0.166 0.5 -> 0.407 Inexact Rounded
1331pwsx3300 power 0.0166 0.5 -> 0.129 Inexact Rounded
1332pwsx3301 power 0.167 0.5 -> 0.409 Inexact Rounded
1333pwsx3302 power 0.0167 0.5 -> 0.129 Inexact Rounded
1334pwsx3303 power 0.168 0.5 -> 0.410 Inexact Rounded
1335pwsx3304 power 0.0168 0.5 -> 0.130 Inexact Rounded
1336pwsx3305 power 0.169 0.5 -> 0.411 Inexact Rounded
1337pwsx3306 power 0.0169 0.5 -> 0.130 Inexact Rounded
1338pwsx3307 power 0.171 0.5 -> 0.414 Inexact Rounded
1339pwsx3308 power 0.0171 0.5 -> 0.131 Inexact Rounded
1340pwsx3309 power 0.172 0.5 -> 0.415 Inexact Rounded
1341pwsx3310 power 0.0172 0.5 -> 0.131 Inexact Rounded
1342pwsx3311 power 0.173 0.5 -> 0.416 Inexact Rounded
1343pwsx3312 power 0.0173 0.5 -> 0.132 Inexact Rounded
1344pwsx3313 power 0.174 0.5 -> 0.417 Inexact Rounded
1345pwsx3314 power 0.0174 0.5 -> 0.132 Inexact Rounded
1346pwsx3315 power 0.175 0.5 -> 0.418 Inexact Rounded
1347pwsx3316 power 0.0175 0.5 -> 0.132 Inexact Rounded
1348pwsx3317 power 0.176 0.5 -> 0.420 Inexact Rounded
1349pwsx3318 power 0.0176 0.5 -> 0.133 Inexact Rounded
1350pwsx3319 power 0.177 0.5 -> 0.421 Inexact Rounded
1351pwsx3320 power 0.0177 0.5 -> 0.133 Inexact Rounded
1352pwsx3321 power 0.178 0.5 -> 0.422 Inexact Rounded
1353pwsx3322 power 0.0178 0.5 -> 0.133 Inexact Rounded
1354pwsx3323 power 0.179 0.5 -> 0.423 Inexact Rounded
1355pwsx3324 power 0.0179 0.5 -> 0.134 Inexact Rounded
1356pwsx3325 power 0.181 0.5 -> 0.425 Inexact Rounded
1357pwsx3326 power 0.0181 0.5 -> 0.135 Inexact Rounded
1358pwsx3327 power 0.182 0.5 -> 0.427 Inexact Rounded
1359pwsx3328 power 0.0182 0.5 -> 0.135 Inexact Rounded
1360pwsx3329 power 0.183 0.5 -> 0.428 Inexact Rounded
1361pwsx3330 power 0.0183 0.5 -> 0.135 Inexact Rounded
1362pwsx3331 power 0.184 0.5 -> 0.429 Inexact Rounded
1363pwsx3332 power 0.0184 0.5 -> 0.136 Inexact Rounded
1364pwsx3333 power 0.185 0.5 -> 0.430 Inexact Rounded
1365pwsx3334 power 0.0185 0.5 -> 0.136 Inexact Rounded
1366pwsx3335 power 0.186 0.5 -> 0.431 Inexact Rounded
1367pwsx3336 power 0.0186 0.5 -> 0.136 Inexact Rounded
1368pwsx3337 power 0.187 0.5 -> 0.432 Inexact Rounded
1369pwsx3338 power 0.0187 0.5 -> 0.137 Inexact Rounded
1370pwsx3339 power 0.188 0.5 -> 0.434 Inexact Rounded
1371pwsx3340 power 0.0188 0.5 -> 0.137 Inexact Rounded
1372pwsx3341 power 0.189 0.5 -> 0.435 Inexact Rounded
1373pwsx3342 power 0.0189 0.5 -> 0.137 Inexact Rounded
1374pwsx3343 power 0.191 0.5 -> 0.437 Inexact Rounded
1375pwsx3344 power 0.0191 0.5 -> 0.138 Inexact Rounded
1376pwsx3345 power 0.192 0.5 -> 0.438 Inexact Rounded
1377pwsx3346 power 0.0192 0.5 -> 0.139 Inexact Rounded
1378pwsx3347 power 0.193 0.5 -> 0.439 Inexact Rounded
1379pwsx3348 power 0.0193 0.5 -> 0.139 Inexact Rounded
1380pwsx3349 power 0.194 0.5 -> 0.440 Inexact Rounded
1381pwsx3350 power 0.0194 0.5 -> 0.139 Inexact Rounded
1382pwsx3351 power 0.195 0.5 -> 0.442 Inexact Rounded
1383pwsx3352 power 0.0195 0.5 -> 0.140 Inexact Rounded
1384pwsx3353 power 0.196 0.5 -> 0.443 Inexact Rounded
1385pwsx3354 power 0.0196 0.5 -> 0.140 Inexact Rounded
1386pwsx3355 power 0.197 0.5 -> 0.444 Inexact Rounded
1387pwsx3356 power 0.0197 0.5 -> 0.140 Inexact Rounded
1388pwsx3357 power 0.198 0.5 -> 0.445 Inexact Rounded
1389pwsx3358 power 0.0198 0.5 -> 0.141 Inexact Rounded
1390pwsx3359 power 0.199 0.5 -> 0.446 Inexact Rounded
1391pwsx3360 power 0.0199 0.5 -> 0.141 Inexact Rounded
1392pwsx3361 power 0.201 0.5 -> 0.448 Inexact Rounded
1393pwsx3362 power 0.0201 0.5 -> 0.142 Inexact Rounded
1394pwsx3363 power 0.202 0.5 -> 0.449 Inexact Rounded
1395pwsx3364 power 0.0202 0.5 -> 0.142 Inexact Rounded
1396pwsx3365 power 0.203 0.5 -> 0.451 Inexact Rounded
1397pwsx3366 power 0.0203 0.5 -> 0.142 Inexact Rounded
1398pwsx3367 power 0.204 0.5 -> 0.452 Inexact Rounded
1399pwsx3368 power 0.0204 0.5 -> 0.143 Inexact Rounded
1400pwsx3369 power 0.205 0.5 -> 0.453 Inexact Rounded
1401pwsx3370 power 0.0205 0.5 -> 0.143 Inexact Rounded
1402pwsx3371 power 0.206 0.5 -> 0.454 Inexact Rounded
1403pwsx3372 power 0.0206 0.5 -> 0.144 Inexact Rounded
1404pwsx3373 power 0.207 0.5 -> 0.455 Inexact Rounded
1405pwsx3374 power 0.0207 0.5 -> 0.144 Inexact Rounded
1406pwsx3375 power 0.208 0.5 -> 0.456 Inexact Rounded
1407pwsx3376 power 0.0208 0.5 -> 0.144 Inexact Rounded
1408pwsx3377 power 0.209 0.5 -> 0.457 Inexact Rounded
1409pwsx3378 power 0.0209 0.5 -> 0.145 Inexact Rounded
1410pwsx3379 power 0.211 0.5 -> 0.459 Inexact Rounded
1411pwsx3380 power 0.0211 0.5 -> 0.145 Inexact Rounded
1412pwsx3381 power 0.212 0.5 -> 0.460 Inexact Rounded
1413pwsx3382 power 0.0212 0.5 -> 0.146 Inexact Rounded
1414pwsx3383 power 0.213 0.5 -> 0.462 Inexact Rounded
1415pwsx3384 power 0.0213 0.5 -> 0.146 Inexact Rounded
1416pwsx3385 power 0.214 0.5 -> 0.463 Inexact Rounded
1417pwsx3386 power 0.0214 0.5 -> 0.146 Inexact Rounded
1418pwsx3387 power 0.215 0.5 -> 0.464 Inexact Rounded
1419pwsx3388 power 0.0215 0.5 -> 0.147 Inexact Rounded
1420pwsx3389 power 0.216 0.5 -> 0.465 Inexact Rounded
1421pwsx3390 power 0.0216 0.5 -> 0.147 Inexact Rounded
1422pwsx3391 power 0.217 0.5 -> 0.466 Inexact Rounded
1423pwsx3392 power 0.0217 0.5 -> 0.147 Inexact Rounded
1424pwsx3393 power 0.218 0.5 -> 0.467 Inexact Rounded
1425pwsx3394 power 0.0218 0.5 -> 0.148 Inexact Rounded
1426pwsx3395 power 0.219 0.5 -> 0.468 Inexact Rounded
1427pwsx3396 power 0.0219 0.5 -> 0.148 Inexact Rounded
1428pwsx3397 power 0.221 0.5 -> 0.470 Inexact Rounded
1429pwsx3398 power 0.0221 0.5 -> 0.149 Inexact Rounded
1430pwsx3399 power 0.222 0.5 -> 0.471 Inexact Rounded
1431pwsx3400 power 0.0222 0.5 -> 0.149 Inexact Rounded
1432pwsx3401 power 0.223 0.5 -> 0.472 Inexact Rounded
1433pwsx3402 power 0.0223 0.5 -> 0.149 Inexact Rounded
1434pwsx3403 power 0.224 0.5 -> 0.473 Inexact Rounded
1435pwsx3404 power 0.0224 0.5 -> 0.150 Inexact Rounded
1436pwsx3405 power 0.225 0.5 -> 0.474 Inexact Rounded
1437pwsx3406 power 0.0225 0.5 -> 0.150 Inexact Rounded
1438pwsx3407 power 0.226 0.5 -> 0.475 Inexact Rounded
1439pwsx3408 power 0.0226 0.5 -> 0.150 Inexact Rounded
1440pwsx3409 power 0.227 0.5 -> 0.476 Inexact Rounded
1441pwsx3410 power 0.0227 0.5 -> 0.151 Inexact Rounded
1442pwsx3411 power 0.228 0.5 -> 0.477 Inexact Rounded
1443pwsx3412 power 0.0228 0.5 -> 0.151 Inexact Rounded
1444pwsx3413 power 0.229 0.5 -> 0.479 Inexact Rounded
1445pwsx3414 power 0.0229 0.5 -> 0.151 Inexact Rounded
1446pwsx3415 power 0.231 0.5 -> 0.481 Inexact Rounded
1447pwsx3416 power 0.0231 0.5 -> 0.152 Inexact Rounded
1448pwsx3417 power 0.232 0.5 -> 0.482 Inexact Rounded
1449pwsx3418 power 0.0232 0.5 -> 0.152 Inexact Rounded
1450pwsx3419 power 0.233 0.5 -> 0.483 Inexact Rounded
1451pwsx3420 power 0.0233 0.5 -> 0.153 Inexact Rounded
1452pwsx3421 power 0.234 0.5 -> 0.484 Inexact Rounded
1453pwsx3422 power 0.0234 0.5 -> 0.153 Inexact Rounded
1454pwsx3423 power 0.235 0.5 -> 0.485 Inexact Rounded
1455pwsx3424 power 0.0235 0.5 -> 0.153 Inexact Rounded
1456pwsx3425 power 0.236 0.5 -> 0.486 Inexact Rounded
1457pwsx3426 power 0.0236 0.5 -> 0.154 Inexact Rounded
1458pwsx3427 power 0.237 0.5 -> 0.487 Inexact Rounded
1459pwsx3428 power 0.0237 0.5 -> 0.154 Inexact Rounded
1460pwsx3429 power 0.238 0.5 -> 0.488 Inexact Rounded
1461pwsx3430 power 0.0238 0.5 -> 0.154 Inexact Rounded
1462pwsx3431 power 0.239 0.5 -> 0.489 Inexact Rounded
1463pwsx3432 power 0.0239 0.5 -> 0.155 Inexact Rounded
1464pwsx3433 power 0.241 0.5 -> 0.491 Inexact Rounded
1465pwsx3434 power 0.0241 0.5 -> 0.155 Inexact Rounded
1466pwsx3435 power 0.242 0.5 -> 0.492 Inexact Rounded
1467pwsx3436 power 0.0242 0.5 -> 0.156 Inexact Rounded
1468pwsx3437 power 0.243 0.5 -> 0.493 Inexact Rounded
1469pwsx3438 power 0.0243 0.5 -> 0.156 Inexact Rounded
1470pwsx3439 power 0.244 0.5 -> 0.494 Inexact Rounded
1471pwsx3440 power 0.0244 0.5 -> 0.156 Inexact Rounded
1472pwsx3441 power 0.245 0.5 -> 0.495 Inexact Rounded
1473pwsx3442 power 0.0245 0.5 -> 0.157 Inexact Rounded
1474pwsx3443 power 0.246 0.5 -> 0.496 Inexact Rounded
1475pwsx3444 power 0.0246 0.5 -> 0.157 Inexact Rounded
1476pwsx3445 power 0.247 0.5 -> 0.497 Inexact Rounded
1477pwsx3446 power 0.0247 0.5 -> 0.157 Inexact Rounded
1478pwsx3447 power 0.248 0.5 -> 0.498 Inexact Rounded
1479pwsx3448 power 0.0248 0.5 -> 0.157 Inexact Rounded
1480pwsx3449 power 0.249 0.5 -> 0.499 Inexact Rounded
1481pwsx3450 power 0.0249 0.5 -> 0.158 Inexact Rounded
1482pwsx3451 power 0.251 0.5 -> 0.501 Inexact Rounded
1483pwsx3452 power 0.0251 0.5 -> 0.158 Inexact Rounded
1484pwsx3453 power 0.252 0.5 -> 0.502 Inexact Rounded
1485pwsx3454 power 0.0252 0.5 -> 0.159 Inexact Rounded
1486pwsx3455 power 0.253 0.5 -> 0.503 Inexact Rounded
1487pwsx3456 power 0.0253 0.5 -> 0.159 Inexact Rounded
1488pwsx3457 power 0.254 0.5 -> 0.504 Inexact Rounded
1489pwsx3458 power 0.0254 0.5 -> 0.159 Inexact Rounded
1490pwsx3459 power 0.255 0.5 -> 0.505 Inexact Rounded
1491pwsx3460 power 0.0255 0.5 -> 0.160 Inexact Rounded
1492pwsx3461 power 0.256 0.5 -> 0.506 Inexact Rounded
1493pwsx3462 power 0.0256 0.5 -> 0.160 Inexact Rounded
1494pwsx3463 power 0.257 0.5 -> 0.507 Inexact Rounded
1495pwsx3464 power 0.0257 0.5 -> 0.160 Inexact Rounded
1496pwsx3465 power 0.258 0.5 -> 0.508 Inexact Rounded
1497pwsx3466 power 0.0258 0.5 -> 0.161 Inexact Rounded
1498pwsx3467 power 0.259 0.5 -> 0.509 Inexact Rounded
1499pwsx3468 power 0.0259 0.5 -> 0.161 Inexact Rounded
1500pwsx3469 power 0.261 0.5 -> 0.511 Inexact Rounded
1501pwsx3470 power 0.0261 0.5 -> 0.162 Inexact Rounded
1502pwsx3471 power 0.262 0.5 -> 0.512 Inexact Rounded
1503pwsx3472 power 0.0262 0.5 -> 0.162 Inexact Rounded
1504pwsx3473 power 0.263 0.5 -> 0.513 Inexact Rounded
1505pwsx3474 power 0.0263 0.5 -> 0.162 Inexact Rounded
1506pwsx3475 power 0.264 0.5 -> 0.514 Inexact Rounded
1507pwsx3476 power 0.0264 0.5 -> 0.162 Inexact Rounded
1508pwsx3477 power 0.265 0.5 -> 0.515 Inexact Rounded
1509pwsx3478 power 0.0265 0.5 -> 0.163 Inexact Rounded
1510pwsx3479 power 0.266 0.5 -> 0.516 Inexact Rounded
1511pwsx3480 power 0.0266 0.5 -> 0.163 Inexact Rounded
1512pwsx3481 power 0.267 0.5 -> 0.517 Inexact Rounded
1513pwsx3482 power 0.0267 0.5 -> 0.163 Inexact Rounded
1514pwsx3483 power 0.268 0.5 -> 0.518 Inexact Rounded
1515pwsx3484 power 0.0268 0.5 -> 0.164 Inexact Rounded
1516pwsx3485 power 0.269 0.5 -> 0.519 Inexact Rounded
1517pwsx3486 power 0.0269 0.5 -> 0.164 Inexact Rounded
1518pwsx3487 power 0.271 0.5 -> 0.521 Inexact Rounded
1519pwsx3488 power 0.0271 0.5 -> 0.165 Inexact Rounded
1520pwsx3489 power 0.272 0.5 -> 0.522 Inexact Rounded
1521pwsx3490 power 0.0272 0.5 -> 0.165 Inexact Rounded
1522pwsx3491 power 0.273 0.5 -> 0.522 Inexact Rounded
1523pwsx3492 power 0.0273 0.5 -> 0.165 Inexact Rounded
1524pwsx3493 power 0.274 0.5 -> 0.523 Inexact Rounded
1525pwsx3494 power 0.0274 0.5 -> 0.166 Inexact Rounded
1526pwsx3495 power 0.275 0.5 -> 0.524 Inexact Rounded
1527pwsx3496 power 0.0275 0.5 -> 0.166 Inexact Rounded
1528pwsx3497 power 0.276 0.5 -> 0.525 Inexact Rounded
1529pwsx3498 power 0.0276 0.5 -> 0.166 Inexact Rounded
1530pwsx3499 power 0.277 0.5 -> 0.526 Inexact Rounded
1531pwsx3500 power 0.0277 0.5 -> 0.166 Inexact Rounded
1532pwsx3501 power 0.278 0.5 -> 0.527 Inexact Rounded
1533pwsx3502 power 0.0278 0.5 -> 0.167 Inexact Rounded
1534pwsx3503 power 0.279 0.5 -> 0.528 Inexact Rounded
1535pwsx3504 power 0.0279 0.5 -> 0.167 Inexact Rounded
1536pwsx3505 power 0.281 0.5 -> 0.530 Inexact Rounded
1537pwsx3506 power 0.0281 0.5 -> 0.168 Inexact Rounded
1538pwsx3507 power 0.282 0.5 -> 0.531 Inexact Rounded
1539pwsx3508 power 0.0282 0.5 -> 0.168 Inexact Rounded
1540pwsx3509 power 0.283 0.5 -> 0.532 Inexact Rounded
1541pwsx3510 power 0.0283 0.5 -> 0.168 Inexact Rounded
1542pwsx3511 power 0.284 0.5 -> 0.533 Inexact Rounded
1543pwsx3512 power 0.0284 0.5 -> 0.169 Inexact Rounded
1544pwsx3513 power 0.285 0.5 -> 0.534 Inexact Rounded
1545pwsx3514 power 0.0285 0.5 -> 0.169 Inexact Rounded
1546pwsx3515 power 0.286 0.5 -> 0.535 Inexact Rounded
1547pwsx3516 power 0.0286 0.5 -> 0.169 Inexact Rounded
1548pwsx3517 power 0.287 0.5 -> 0.536 Inexact Rounded
1549pwsx3518 power 0.0287 0.5 -> 0.169 Inexact Rounded
1550pwsx3519 power 0.288 0.5 -> 0.537 Inexact Rounded
1551pwsx3520 power 0.0288 0.5 -> 0.170 Inexact Rounded
1552pwsx3521 power 0.289 0.5 -> 0.538 Inexact Rounded
1553pwsx3522 power 0.0289 0.5 -> 0.170 Inexact Rounded
1554pwsx3523 power 0.291 0.5 -> 0.539 Inexact Rounded
1555pwsx3524 power 0.0291 0.5 -> 0.171 Inexact Rounded
1556pwsx3525 power 0.292 0.5 -> 0.540 Inexact Rounded
1557pwsx3526 power 0.0292 0.5 -> 0.171 Inexact Rounded
1558pwsx3527 power 0.293 0.5 -> 0.541 Inexact Rounded
1559pwsx3528 power 0.0293 0.5 -> 0.171 Inexact Rounded
1560pwsx3529 power 0.294 0.5 -> 0.542 Inexact Rounded
1561pwsx3530 power 0.0294 0.5 -> 0.171 Inexact Rounded
1562pwsx3531 power 0.295 0.5 -> 0.543 Inexact Rounded
1563pwsx3532 power 0.0295 0.5 -> 0.172 Inexact Rounded
1564pwsx3533 power 0.296 0.5 -> 0.544 Inexact Rounded
1565pwsx3534 power 0.0296 0.5 -> 0.172 Inexact Rounded
1566pwsx3535 power 0.297 0.5 -> 0.545 Inexact Rounded
1567pwsx3536 power 0.0297 0.5 -> 0.172 Inexact Rounded
1568pwsx3537 power 0.298 0.5 -> 0.546 Inexact Rounded
1569pwsx3538 power 0.0298 0.5 -> 0.173 Inexact Rounded
1570pwsx3539 power 0.299 0.5 -> 0.547 Inexact Rounded
1571pwsx3540 power 0.0299 0.5 -> 0.173 Inexact Rounded
1572pwsx3541 power 0.301 0.5 -> 0.549 Inexact Rounded
1573pwsx3542 power 0.0301 0.5 -> 0.173 Inexact Rounded
1574pwsx3543 power 0.302 0.5 -> 0.550 Inexact Rounded
1575pwsx3544 power 0.0302 0.5 -> 0.174 Inexact Rounded
1576pwsx3545 power 0.303 0.5 -> 0.550 Inexact Rounded
1577pwsx3546 power 0.0303 0.5 -> 0.174 Inexact Rounded
1578pwsx3547 power 0.304 0.5 -> 0.551 Inexact Rounded
1579pwsx3548 power 0.0304 0.5 -> 0.174 Inexact Rounded
1580pwsx3549 power 0.305 0.5 -> 0.552 Inexact Rounded
1581pwsx3550 power 0.0305 0.5 -> 0.175 Inexact Rounded
1582pwsx3551 power 0.306 0.5 -> 0.553 Inexact Rounded
1583pwsx3552 power 0.0306 0.5 -> 0.175 Inexact Rounded
1584pwsx3553 power 0.307 0.5 -> 0.554 Inexact Rounded
1585pwsx3554 power 0.0307 0.5 -> 0.175 Inexact Rounded
1586pwsx3555 power 0.308 0.5 -> 0.555 Inexact Rounded
1587pwsx3556 power 0.0308 0.5 -> 0.175 Inexact Rounded
1588pwsx3557 power 0.309 0.5 -> 0.556 Inexact Rounded
1589pwsx3558 power 0.0309 0.5 -> 0.176 Inexact Rounded
1590pwsx3559 power 0.311 0.5 -> 0.558 Inexact Rounded
1591pwsx3560 power 0.0311 0.5 -> 0.176 Inexact Rounded
1592pwsx3561 power 0.312 0.5 -> 0.559 Inexact Rounded
1593pwsx3562 power 0.0312 0.5 -> 0.177 Inexact Rounded
1594pwsx3563 power 0.313 0.5 -> 0.559 Inexact Rounded
1595pwsx3564 power 0.0313 0.5 -> 0.177 Inexact Rounded
1596pwsx3565 power 0.314 0.5 -> 0.560 Inexact Rounded
1597pwsx3566 power 0.0314 0.5 -> 0.177 Inexact Rounded
1598pwsx3567 power 0.315 0.5 -> 0.561 Inexact Rounded
1599pwsx3568 power 0.0315 0.5 -> 0.177 Inexact Rounded
1600pwsx3569 power 0.316 0.5 -> 0.562 Inexact Rounded
1601pwsx3570 power 0.0316 0.5 -> 0.178 Inexact Rounded
1602pwsx3571 power 0.317 0.5 -> 0.563 Inexact Rounded
1603pwsx3572 power 0.0317 0.5 -> 0.178 Inexact Rounded
1604pwsx3573 power 0.318 0.5 -> 0.564 Inexact Rounded
1605pwsx3574 power 0.0318 0.5 -> 0.178 Inexact Rounded
1606pwsx3575 power 0.319 0.5 -> 0.565 Inexact Rounded
1607pwsx3576 power 0.0319 0.5 -> 0.179 Inexact Rounded
1608pwsx3577 power 0.321 0.5 -> 0.567 Inexact Rounded
1609pwsx3578 power 0.0321 0.5 -> 0.179 Inexact Rounded
1610pwsx3579 power 0.322 0.5 -> 0.567 Inexact Rounded
1611pwsx3580 power 0.0322 0.5 -> 0.179 Inexact Rounded
1612pwsx3581 power 0.323 0.5 -> 0.568 Inexact Rounded
1613pwsx3582 power 0.0323 0.5 -> 0.180 Inexact Rounded
1614pwsx3583 power 0.324 0.5 -> 0.569 Inexact Rounded
1615pwsx3584 power 0.0324 0.5 -> 0.180 Inexact Rounded
1616pwsx3585 power 0.325 0.5 -> 0.570 Inexact Rounded
1617pwsx3586 power 0.0325 0.5 -> 0.180 Inexact Rounded
1618pwsx3587 power 0.326 0.5 -> 0.571 Inexact Rounded
1619pwsx3588 power 0.0326 0.5 -> 0.181 Inexact Rounded
1620pwsx3589 power 0.327 0.5 -> 0.572 Inexact Rounded
1621pwsx3590 power 0.0327 0.5 -> 0.181 Inexact Rounded
1622pwsx3591 power 0.328 0.5 -> 0.573 Inexact Rounded
1623pwsx3592 power 0.0328 0.5 -> 0.181 Inexact Rounded
1624pwsx3593 power 0.329 0.5 -> 0.574 Inexact Rounded
1625pwsx3594 power 0.0329 0.5 -> 0.181 Inexact Rounded
1626pwsx3595 power 0.331 0.5 -> 0.575 Inexact Rounded
1627pwsx3596 power 0.0331 0.5 -> 0.182 Inexact Rounded
1628pwsx3597 power 0.332 0.5 -> 0.576 Inexact Rounded
1629pwsx3598 power 0.0332 0.5 -> 0.182 Inexact Rounded
1630pwsx3599 power 0.333 0.5 -> 0.577 Inexact Rounded
1631pwsx3600 power 0.0333 0.5 -> 0.182 Inexact Rounded
1632pwsx3601 power 0.334 0.5 -> 0.578 Inexact Rounded
1633pwsx3602 power 0.0334 0.5 -> 0.183 Inexact Rounded
1634pwsx3603 power 0.335 0.5 -> 0.579 Inexact Rounded
1635pwsx3604 power 0.0335 0.5 -> 0.183 Inexact Rounded
1636pwsx3605 power 0.336 0.5 -> 0.580 Inexact Rounded
1637pwsx3606 power 0.0336 0.5 -> 0.183 Inexact Rounded
1638pwsx3607 power 0.337 0.5 -> 0.581 Inexact Rounded
1639pwsx3608 power 0.0337 0.5 -> 0.184 Inexact Rounded
1640pwsx3609 power 0.338 0.5 -> 0.581 Inexact Rounded
1641pwsx3610 power 0.0338 0.5 -> 0.184 Inexact Rounded
1642pwsx3611 power 0.339 0.5 -> 0.582 Inexact Rounded
1643pwsx3612 power 0.0339 0.5 -> 0.184 Inexact Rounded
1644pwsx3613 power 0.341 0.5 -> 0.584 Inexact Rounded
1645pwsx3614 power 0.0341 0.5 -> 0.185 Inexact Rounded
1646pwsx3615 power 0.342 0.5 -> 0.585 Inexact Rounded
1647pwsx3616 power 0.0342 0.5 -> 0.185 Inexact Rounded
1648pwsx3617 power 0.343 0.5 -> 0.586 Inexact Rounded
1649pwsx3618 power 0.0343 0.5 -> 0.185 Inexact Rounded
1650pwsx3619 power 0.344 0.5 -> 0.587 Inexact Rounded
1651pwsx3620 power 0.0344 0.5 -> 0.185 Inexact Rounded
1652pwsx3621 power 0.345 0.5 -> 0.587 Inexact Rounded
1653pwsx3622 power 0.0345 0.5 -> 0.186 Inexact Rounded
1654pwsx3623 power 0.346 0.5 -> 0.588 Inexact Rounded
1655pwsx3624 power 0.0346 0.5 -> 0.186 Inexact Rounded
1656pwsx3625 power 0.347 0.5 -> 0.589 Inexact Rounded
1657pwsx3626 power 0.0347 0.5 -> 0.186 Inexact Rounded
1658pwsx3627 power 0.348 0.5 -> 0.590 Inexact Rounded
1659pwsx3628 power 0.0348 0.5 -> 0.187 Inexact Rounded
1660pwsx3629 power 0.349 0.5 -> 0.591 Inexact Rounded
1661pwsx3630 power 0.0349 0.5 -> 0.187 Inexact Rounded
1662pwsx3631 power 0.351 0.5 -> 0.592 Inexact Rounded
1663pwsx3632 power 0.0351 0.5 -> 0.187 Inexact Rounded
1664pwsx3633 power 0.352 0.5 -> 0.593 Inexact Rounded
1665pwsx3634 power 0.0352 0.5 -> 0.188 Inexact Rounded
1666pwsx3635 power 0.353 0.5 -> 0.594 Inexact Rounded
1667pwsx3636 power 0.0353 0.5 -> 0.188 Inexact Rounded
1668pwsx3637 power 0.354 0.5 -> 0.595 Inexact Rounded
1669pwsx3638 power 0.0354 0.5 -> 0.188 Inexact Rounded
1670pwsx3639 power 0.355 0.5 -> 0.596 Inexact Rounded
1671pwsx3640 power 0.0355 0.5 -> 0.188 Inexact Rounded
1672pwsx3641 power 0.356 0.5 -> 0.597 Inexact Rounded
1673pwsx3642 power 0.0356 0.5 -> 0.189 Inexact Rounded
1674pwsx3643 power 0.357 0.5 -> 0.597 Inexact Rounded
1675pwsx3644 power 0.0357 0.5 -> 0.189 Inexact Rounded
1676pwsx3645 power 0.358 0.5 -> 0.598 Inexact Rounded
1677pwsx3646 power 0.0358 0.5 -> 0.189 Inexact Rounded
1678pwsx3647 power 0.359 0.5 -> 0.599 Inexact Rounded
1679pwsx3648 power 0.0359 0.5 -> 0.189 Inexact Rounded
1680pwsx3649 power 0.361 0.5 -> 0.601 Inexact Rounded
1681pwsx3650 power 0.0361 0.5 -> 0.190 Inexact Rounded
1682pwsx3651 power 0.362 0.5 -> 0.602 Inexact Rounded
1683pwsx3652 power 0.0362 0.5 -> 0.190 Inexact Rounded
1684pwsx3653 power 0.363 0.5 -> 0.602 Inexact Rounded
1685pwsx3654 power 0.0363 0.5 -> 0.191 Inexact Rounded
1686pwsx3655 power 0.364 0.5 -> 0.603 Inexact Rounded
1687pwsx3656 power 0.0364 0.5 -> 0.191 Inexact Rounded
1688pwsx3657 power 0.365 0.5 -> 0.604 Inexact Rounded
1689pwsx3658 power 0.0365 0.5 -> 0.191 Inexact Rounded
1690pwsx3659 power 0.366 0.5 -> 0.605 Inexact Rounded
1691pwsx3660 power 0.0366 0.5 -> 0.191 Inexact Rounded
1692pwsx3661 power 0.367 0.5 -> 0.606 Inexact Rounded
1693pwsx3662 power 0.0367 0.5 -> 0.192 Inexact Rounded
1694pwsx3663 power 0.368 0.5 -> 0.607 Inexact Rounded
1695pwsx3664 power 0.0368 0.5 -> 0.192 Inexact Rounded
1696pwsx3665 power 0.369 0.5 -> 0.607 Inexact Rounded
1697pwsx3666 power 0.0369 0.5 -> 0.192 Inexact Rounded
1698pwsx3667 power 0.371 0.5 -> 0.609 Inexact Rounded
1699pwsx3668 power 0.0371 0.5 -> 0.193 Inexact Rounded
1700pwsx3669 power 0.372 0.5 -> 0.610 Inexact Rounded
1701pwsx3670 power 0.0372 0.5 -> 0.193 Inexact Rounded
1702pwsx3671 power 0.373 0.5 -> 0.611 Inexact Rounded
1703pwsx3672 power 0.0373 0.5 -> 0.193 Inexact Rounded
1704pwsx3673 power 0.374 0.5 -> 0.612 Inexact Rounded
1705pwsx3674 power 0.0374 0.5 -> 0.193 Inexact Rounded
1706pwsx3675 power 0.375 0.5 -> 0.612 Inexact Rounded
1707pwsx3676 power 0.0375 0.5 -> 0.194 Inexact Rounded
1708pwsx3677 power 0.376 0.5 -> 0.613 Inexact Rounded
1709pwsx3678 power 0.0376 0.5 -> 0.194 Inexact Rounded
1710pwsx3679 power 0.377 0.5 -> 0.614 Inexact Rounded
1711pwsx3680 power 0.0377 0.5 -> 0.194 Inexact Rounded
1712pwsx3681 power 0.378 0.5 -> 0.615 Inexact Rounded
1713pwsx3682 power 0.0378 0.5 -> 0.194 Inexact Rounded
1714pwsx3683 power 0.379 0.5 -> 0.616 Inexact Rounded
1715pwsx3684 power 0.0379 0.5 -> 0.195 Inexact Rounded
1716pwsx3685 power 0.381 0.5 -> 0.617 Inexact Rounded
1717pwsx3686 power 0.0381 0.5 -> 0.195 Inexact Rounded
1718pwsx3687 power 0.382 0.5 -> 0.618 Inexact Rounded
1719pwsx3688 power 0.0382 0.5 -> 0.195 Inexact Rounded
1720pwsx3689 power 0.383 0.5 -> 0.619 Inexact Rounded
1721pwsx3690 power 0.0383 0.5 -> 0.196 Inexact Rounded
1722pwsx3691 power 0.384 0.5 -> 0.620 Inexact Rounded
1723pwsx3692 power 0.0384 0.5 -> 0.196 Inexact Rounded
1724pwsx3693 power 0.385 0.5 -> 0.620 Inexact Rounded
1725pwsx3694 power 0.0385 0.5 -> 0.196 Inexact Rounded
1726pwsx3695 power 0.386 0.5 -> 0.621 Inexact Rounded
1727pwsx3696 power 0.0386 0.5 -> 0.196 Inexact Rounded
1728pwsx3697 power 0.387 0.5 -> 0.622 Inexact Rounded
1729pwsx3698 power 0.0387 0.5 -> 0.197 Inexact Rounded
1730pwsx3699 power 0.388 0.5 -> 0.623 Inexact Rounded
1731pwsx3700 power 0.0388 0.5 -> 0.197 Inexact Rounded
1732pwsx3701 power 0.389 0.5 -> 0.624 Inexact Rounded
1733pwsx3702 power 0.0389 0.5 -> 0.197 Inexact Rounded
1734pwsx3703 power 0.391 0.5 -> 0.625 Inexact Rounded
1735pwsx3704 power 0.0391 0.5 -> 0.198 Inexact Rounded
1736pwsx3705 power 0.392 0.5 -> 0.626 Inexact Rounded
1737pwsx3706 power 0.0392 0.5 -> 0.198 Inexact Rounded
1738pwsx3707 power 0.393 0.5 -> 0.627 Inexact Rounded
1739pwsx3708 power 0.0393 0.5 -> 0.198 Inexact Rounded
1740pwsx3709 power 0.394 0.5 -> 0.628 Inexact Rounded
1741pwsx3710 power 0.0394 0.5 -> 0.198 Inexact Rounded
1742pwsx3711 power 0.395 0.5 -> 0.628 Inexact Rounded
1743pwsx3712 power 0.0395 0.5 -> 0.199 Inexact Rounded
1744pwsx3713 power 0.396 0.5 -> 0.629 Inexact Rounded
1745pwsx3714 power 0.0396 0.5 -> 0.199 Inexact Rounded
1746pwsx3715 power 0.397 0.5 -> 0.630 Inexact Rounded
1747pwsx3716 power 0.0397 0.5 -> 0.199 Inexact Rounded
1748pwsx3717 power 0.398 0.5 -> 0.631 Inexact Rounded
1749pwsx3718 power 0.0398 0.5 -> 0.199 Inexact Rounded
1750pwsx3719 power 0.399 0.5 -> 0.632 Inexact Rounded
1751pwsx3720 power 0.0399 0.5 -> 0.200 Inexact Rounded
1752pwsx3721 power 0.401 0.5 -> 0.633 Inexact Rounded
1753pwsx3722 power 0.0401 0.5 -> 0.200 Inexact Rounded
1754pwsx3723 power 0.402 0.5 -> 0.634 Inexact Rounded
1755pwsx3724 power 0.0402 0.5 -> 0.200 Inexact Rounded
1756pwsx3725 power 0.403 0.5 -> 0.635 Inexact Rounded
1757pwsx3726 power 0.0403 0.5 -> 0.201 Inexact Rounded
1758pwsx3727 power 0.404 0.5 -> 0.636 Inexact Rounded
1759pwsx3728 power 0.0404 0.5 -> 0.201 Inexact Rounded
1760pwsx3729 power 0.405 0.5 -> 0.636 Inexact Rounded
1761pwsx3730 power 0.0405 0.5 -> 0.201 Inexact Rounded
1762pwsx3731 power 0.406 0.5 -> 0.637 Inexact Rounded
1763pwsx3732 power 0.0406 0.5 -> 0.201 Inexact Rounded
1764pwsx3733 power 0.407 0.5 -> 0.638 Inexact Rounded
1765pwsx3734 power 0.0407 0.5 -> 0.202 Inexact Rounded
1766pwsx3735 power 0.408 0.5 -> 0.639 Inexact Rounded
1767pwsx3736 power 0.0408 0.5 -> 0.202 Inexact Rounded
1768pwsx3737 power 0.409 0.5 -> 0.640 Inexact Rounded
1769pwsx3738 power 0.0409 0.5 -> 0.202 Inexact Rounded
1770pwsx3739 power 0.411 0.5 -> 0.641 Inexact Rounded
1771pwsx3740 power 0.0411 0.5 -> 0.203 Inexact Rounded
1772pwsx3741 power 0.412 0.5 -> 0.642 Inexact Rounded
1773pwsx3742 power 0.0412 0.5 -> 0.203 Inexact Rounded
1774pwsx3743 power 0.413 0.5 -> 0.643 Inexact Rounded
1775pwsx3744 power 0.0413 0.5 -> 0.203 Inexact Rounded
1776pwsx3745 power 0.414 0.5 -> 0.643 Inexact Rounded
1777pwsx3746 power 0.0414 0.5 -> 0.203 Inexact Rounded
1778pwsx3747 power 0.415 0.5 -> 0.644 Inexact Rounded
1779pwsx3748 power 0.0415 0.5 -> 0.204 Inexact Rounded
1780pwsx3749 power 0.416 0.5 -> 0.645 Inexact Rounded
1781pwsx3750 power 0.0416 0.5 -> 0.204 Inexact Rounded
1782pwsx3751 power 0.417 0.5 -> 0.646 Inexact Rounded
1783pwsx3752 power 0.0417 0.5 -> 0.204 Inexact Rounded
1784pwsx3753 power 0.418 0.5 -> 0.647 Inexact Rounded
1785pwsx3754 power 0.0418 0.5 -> 0.204 Inexact Rounded
1786pwsx3755 power 0.419 0.5 -> 0.647 Inexact Rounded
1787pwsx3756 power 0.0419 0.5 -> 0.205 Inexact Rounded
1788pwsx3757 power 0.421 0.5 -> 0.649 Inexact Rounded
1789pwsx3758 power 0.0421 0.5 -> 0.205 Inexact Rounded
1790pwsx3759 power 0.422 0.5 -> 0.650 Inexact Rounded
1791pwsx3760 power 0.0422 0.5 -> 0.205 Inexact Rounded
1792pwsx3761 power 0.423 0.5 -> 0.650 Inexact Rounded
1793pwsx3762 power 0.0423 0.5 -> 0.206 Inexact Rounded
1794pwsx3763 power 0.424 0.5 -> 0.651 Inexact Rounded
1795pwsx3764 power 0.0424 0.5 -> 0.206 Inexact Rounded
1796pwsx3765 power 0.425 0.5 -> 0.652 Inexact Rounded
1797pwsx3766 power 0.0425 0.5 -> 0.206 Inexact Rounded
1798pwsx3767 power 0.426 0.5 -> 0.653 Inexact Rounded
1799pwsx3768 power 0.0426 0.5 -> 0.206 Inexact Rounded
1800pwsx3769 power 0.427 0.5 -> 0.653 Inexact Rounded
1801pwsx3770 power 0.0427 0.5 -> 0.207 Inexact Rounded
1802pwsx3771 power 0.428 0.5 -> 0.654 Inexact Rounded
1803pwsx3772 power 0.0428 0.5 -> 0.207 Inexact Rounded
1804pwsx3773 power 0.429 0.5 -> 0.655 Inexact Rounded
1805pwsx3774 power 0.0429 0.5 -> 0.207 Inexact Rounded
1806pwsx3775 power 0.431 0.5 -> 0.657 Inexact Rounded
1807pwsx3776 power 0.0431 0.5 -> 0.208 Inexact Rounded
1808pwsx3777 power 0.432 0.5 -> 0.657 Inexact Rounded
1809pwsx3778 power 0.0432 0.5 -> 0.208 Inexact Rounded
1810pwsx3779 power 0.433 0.5 -> 0.658 Inexact Rounded
1811pwsx3780 power 0.0433 0.5 -> 0.208 Inexact Rounded
1812pwsx3781 power 0.434 0.5 -> 0.659 Inexact Rounded
1813pwsx3782 power 0.0434 0.5 -> 0.208 Inexact Rounded
1814pwsx3783 power 0.435 0.5 -> 0.660 Inexact Rounded
1815pwsx3784 power 0.0435 0.5 -> 0.209 Inexact Rounded
1816pwsx3785 power 0.436 0.5 -> 0.660 Inexact Rounded
1817pwsx3786 power 0.0436 0.5 -> 0.209 Inexact Rounded
1818pwsx3787 power 0.437 0.5 -> 0.661 Inexact Rounded
1819pwsx3788 power 0.0437 0.5 -> 0.209 Inexact Rounded
1820pwsx3789 power 0.438 0.5 -> 0.662 Inexact Rounded
1821pwsx3790 power 0.0438 0.5 -> 0.209 Inexact Rounded
1822pwsx3791 power 0.439 0.5 -> 0.663 Inexact Rounded
1823pwsx3792 power 0.0439 0.5 -> 0.210 Inexact Rounded
1824pwsx3793 power 0.441 0.5 -> 0.664 Inexact Rounded
1825pwsx3794 power 0.0441 0.5 -> 0.210 Inexact Rounded
1826pwsx3795 power 0.442 0.5 -> 0.665 Inexact Rounded
1827pwsx3796 power 0.0442 0.5 -> 0.210 Inexact Rounded
1828pwsx3797 power 0.443 0.5 -> 0.666 Inexact Rounded
1829pwsx3798 power 0.0443 0.5 -> 0.210 Inexact Rounded
1830pwsx3799 power 0.444 0.5 -> 0.666 Inexact Rounded
1831pwsx3800 power 0.0444 0.5 -> 0.211 Inexact Rounded
1832pwsx3801 power 0.445 0.5 -> 0.667 Inexact Rounded
1833pwsx3802 power 0.0445 0.5 -> 0.211 Inexact Rounded
1834pwsx3803 power 0.446 0.5 -> 0.668 Inexact Rounded
1835pwsx3804 power 0.0446 0.5 -> 0.211 Inexact Rounded
1836pwsx3805 power 0.447 0.5 -> 0.669 Inexact Rounded
1837pwsx3806 power 0.0447 0.5 -> 0.211 Inexact Rounded
1838pwsx3807 power 0.448 0.5 -> 0.669 Inexact Rounded
1839pwsx3808 power 0.0448 0.5 -> 0.212 Inexact Rounded
1840pwsx3809 power 0.449 0.5 -> 0.670 Inexact Rounded
1841pwsx3810 power 0.0449 0.5 -> 0.212 Inexact Rounded
1842pwsx3811 power 0.451 0.5 -> 0.672 Inexact Rounded
1843pwsx3812 power 0.0451 0.5 -> 0.212 Inexact Rounded
1844pwsx3813 power 0.452 0.5 -> 0.672 Inexact Rounded
1845pwsx3814 power 0.0452 0.5 -> 0.213 Inexact Rounded
1846pwsx3815 power 0.453 0.5 -> 0.673 Inexact Rounded
1847pwsx3816 power 0.0453 0.5 -> 0.213 Inexact Rounded
1848pwsx3817 power 0.454 0.5 -> 0.674 Inexact Rounded
1849pwsx3818 power 0.0454 0.5 -> 0.213 Inexact Rounded
1850pwsx3819 power 0.455 0.5 -> 0.675 Inexact Rounded
1851pwsx3820 power 0.0455 0.5 -> 0.213 Inexact Rounded
1852pwsx3821 power 0.456 0.5 -> 0.675 Inexact Rounded
1853pwsx3822 power 0.0456 0.5 -> 0.214 Inexact Rounded
1854pwsx3823 power 0.457 0.5 -> 0.676 Inexact Rounded
1855pwsx3824 power 0.0457 0.5 -> 0.214 Inexact Rounded
1856pwsx3825 power 0.458 0.5 -> 0.677 Inexact Rounded
1857pwsx3826 power 0.0458 0.5 -> 0.214 Inexact Rounded
1858pwsx3827 power 0.459 0.5 -> 0.677 Inexact Rounded
1859pwsx3828 power 0.0459 0.5 -> 0.214 Inexact Rounded
1860pwsx3829 power 0.461 0.5 -> 0.679 Inexact Rounded
1861pwsx3830 power 0.0461 0.5 -> 0.215 Inexact Rounded
1862pwsx3831 power 0.462 0.5 -> 0.680 Inexact Rounded
1863pwsx3832 power 0.0462 0.5 -> 0.215 Inexact Rounded
1864pwsx3833 power 0.463 0.5 -> 0.680 Inexact Rounded
1865pwsx3834 power 0.0463 0.5 -> 0.215 Inexact Rounded
1866pwsx3835 power 0.464 0.5 -> 0.681 Inexact Rounded
1867pwsx3836 power 0.0464 0.5 -> 0.215 Inexact Rounded
1868pwsx3837 power 0.465 0.5 -> 0.682 Inexact Rounded
1869pwsx3838 power 0.0465 0.5 -> 0.216 Inexact Rounded
1870pwsx3839 power 0.466 0.5 -> 0.683 Inexact Rounded
1871pwsx3840 power 0.0466 0.5 -> 0.216 Inexact Rounded
1872pwsx3841 power 0.467 0.5 -> 0.683 Inexact Rounded
1873pwsx3842 power 0.0467 0.5 -> 0.216 Inexact Rounded
1874pwsx3843 power 0.468 0.5 -> 0.684 Inexact Rounded
1875pwsx3844 power 0.0468 0.5 -> 0.216 Inexact Rounded
1876pwsx3845 power 0.469 0.5 -> 0.685 Inexact Rounded
1877pwsx3846 power 0.0469 0.5 -> 0.217 Inexact Rounded
1878pwsx3847 power 0.471 0.5 -> 0.686 Inexact Rounded
1879pwsx3848 power 0.0471 0.5 -> 0.217 Inexact Rounded
1880pwsx3849 power 0.472 0.5 -> 0.687 Inexact Rounded
1881pwsx3850 power 0.0472 0.5 -> 0.217 Inexact Rounded
1882pwsx3851 power 0.473 0.5 -> 0.688 Inexact Rounded
1883pwsx3852 power 0.0473 0.5 -> 0.217 Inexact Rounded
1884pwsx3853 power 0.474 0.5 -> 0.688 Inexact Rounded
1885pwsx3854 power 0.0474 0.5 -> 0.218 Inexact Rounded
1886pwsx3855 power 0.475 0.5 -> 0.689 Inexact Rounded
1887pwsx3856 power 0.0475 0.5 -> 0.218 Inexact Rounded
1888pwsx3857 power 0.476 0.5 -> 0.690 Inexact Rounded
1889pwsx3858 power 0.0476 0.5 -> 0.218 Inexact Rounded
1890pwsx3859 power 0.477 0.5 -> 0.691 Inexact Rounded
1891pwsx3860 power 0.0477 0.5 -> 0.218 Inexact Rounded
1892pwsx3861 power 0.478 0.5 -> 0.691 Inexact Rounded
1893pwsx3862 power 0.0478 0.5 -> 0.219 Inexact Rounded
1894pwsx3863 power 0.479 0.5 -> 0.692 Inexact Rounded
1895pwsx3864 power 0.0479 0.5 -> 0.219 Inexact Rounded
1896pwsx3865 power 0.481 0.5 -> 0.694 Inexact Rounded
1897pwsx3866 power 0.0481 0.5 -> 0.219 Inexact Rounded
1898pwsx3867 power 0.482 0.5 -> 0.694 Inexact Rounded
1899pwsx3868 power 0.0482 0.5 -> 0.220 Inexact Rounded
1900pwsx3869 power 0.483 0.5 -> 0.695 Inexact Rounded
1901pwsx3870 power 0.0483 0.5 -> 0.220 Inexact Rounded
1902pwsx3871 power 0.484 0.5 -> 0.696 Inexact Rounded
1903pwsx3872 power 0.0484 0.5 -> 0.220 Inexact Rounded
1904pwsx3873 power 0.485 0.5 -> 0.696 Inexact Rounded
1905pwsx3874 power 0.0485 0.5 -> 0.220 Inexact Rounded
1906pwsx3875 power 0.486 0.5 -> 0.697 Inexact Rounded
1907pwsx3876 power 0.0486 0.5 -> 0.220 Inexact Rounded
1908pwsx3877 power 0.487 0.5 -> 0.698 Inexact Rounded
1909pwsx3878 power 0.0487 0.5 -> 0.221 Inexact Rounded
1910pwsx3879 power 0.488 0.5 -> 0.699 Inexact Rounded
1911pwsx3880 power 0.0488 0.5 -> 0.221 Inexact Rounded
1912pwsx3881 power 0.489 0.5 -> 0.699 Inexact Rounded
1913pwsx3882 power 0.0489 0.5 -> 0.221 Inexact Rounded
1914pwsx3883 power 0.491 0.5 -> 0.701 Inexact Rounded
1915pwsx3884 power 0.0491 0.5 -> 0.222 Inexact Rounded
1916pwsx3885 power 0.492 0.5 -> 0.701 Inexact Rounded
1917pwsx3886 power 0.0492 0.5 -> 0.222 Inexact Rounded
1918pwsx3887 power 0.493 0.5 -> 0.702 Inexact Rounded
1919pwsx3888 power 0.0493 0.5 -> 0.222 Inexact Rounded
1920pwsx3889 power 0.494 0.5 -> 0.703 Inexact Rounded
1921pwsx3890 power 0.0494 0.5 -> 0.222 Inexact Rounded
1922pwsx3891 power 0.495 0.5 -> 0.704 Inexact Rounded
1923pwsx3892 power 0.0495 0.5 -> 0.222 Inexact Rounded
1924pwsx3893 power 0.496 0.5 -> 0.704 Inexact Rounded
1925pwsx3894 power 0.0496 0.5 -> 0.223 Inexact Rounded
1926pwsx3895 power 0.497 0.5 -> 0.705 Inexact Rounded
1927pwsx3896 power 0.0497 0.5 -> 0.223 Inexact Rounded
1928pwsx3897 power 0.498 0.5 -> 0.706 Inexact Rounded
1929pwsx3898 power 0.0498 0.5 -> 0.223 Inexact Rounded
1930pwsx3899 power 0.499 0.5 -> 0.706 Inexact Rounded
1931pwsx3900 power 0.0499 0.5 -> 0.223 Inexact Rounded
1932pwsx3901 power 0.501 0.5 -> 0.708 Inexact Rounded
1933pwsx3902 power 0.0501 0.5 -> 0.224 Inexact Rounded
1934pwsx3903 power 0.502 0.5 -> 0.709 Inexact Rounded
1935pwsx3904 power 0.0502 0.5 -> 0.224 Inexact Rounded
1936pwsx3905 power 0.503 0.5 -> 0.709 Inexact Rounded
1937pwsx3906 power 0.0503 0.5 -> 0.224 Inexact Rounded
1938pwsx3907 power 0.504 0.5 -> 0.710 Inexact Rounded
1939pwsx3908 power 0.0504 0.5 -> 0.224 Inexact Rounded
1940pwsx3909 power 0.505 0.5 -> 0.711 Inexact Rounded
1941pwsx3910 power 0.0505 0.5 -> 0.225 Inexact Rounded
1942pwsx3911 power 0.506 0.5 -> 0.711 Inexact Rounded
1943pwsx3912 power 0.0506 0.5 -> 0.225 Inexact Rounded
1944pwsx3913 power 0.507 0.5 -> 0.712 Inexact Rounded
1945pwsx3914 power 0.0507 0.5 -> 0.225 Inexact Rounded
1946pwsx3915 power 0.508 0.5 -> 0.713 Inexact Rounded
1947pwsx3916 power 0.0508 0.5 -> 0.225 Inexact Rounded
1948pwsx3917 power 0.509 0.5 -> 0.713 Inexact Rounded
1949pwsx3918 power 0.0509 0.5 -> 0.226 Inexact Rounded
1950pwsx3919 power 0.511 0.5 -> 0.715 Inexact Rounded
1951pwsx3920 power 0.0511 0.5 -> 0.226 Inexact Rounded
1952pwsx3921 power 0.512 0.5 -> 0.716 Inexact Rounded
1953pwsx3922 power 0.0512 0.5 -> 0.226 Inexact Rounded
1954pwsx3923 power 0.513 0.5 -> 0.716 Inexact Rounded
1955pwsx3924 power 0.0513 0.5 -> 0.226 Inexact Rounded
1956pwsx3925 power 0.514 0.5 -> 0.717 Inexact Rounded
1957pwsx3926 power 0.0514 0.5 -> 0.227 Inexact Rounded
1958pwsx3927 power 0.515 0.5 -> 0.718 Inexact Rounded
1959pwsx3928 power 0.0515 0.5 -> 0.227 Inexact Rounded
1960pwsx3929 power 0.516 0.5 -> 0.718 Inexact Rounded
1961pwsx3930 power 0.0516 0.5 -> 0.227 Inexact Rounded
1962pwsx3931 power 0.517 0.5 -> 0.719 Inexact Rounded
1963pwsx3932 power 0.0517 0.5 -> 0.227 Inexact Rounded
1964pwsx3933 power 0.518 0.5 -> 0.720 Inexact Rounded
1965pwsx3934 power 0.0518 0.5 -> 0.228 Inexact Rounded
1966pwsx3935 power 0.519 0.5 -> 0.720 Inexact Rounded
1967pwsx3936 power 0.0519 0.5 -> 0.228 Inexact Rounded
1968pwsx3937 power 0.521 0.5 -> 0.722 Inexact Rounded
1969pwsx3938 power 0.0521 0.5 -> 0.228 Inexact Rounded
1970pwsx3939 power 0.522 0.5 -> 0.722 Inexact Rounded
1971pwsx3940 power 0.0522 0.5 -> 0.228 Inexact Rounded
1972pwsx3941 power 0.523 0.5 -> 0.723 Inexact Rounded
1973pwsx3942 power 0.0523 0.5 -> 0.229 Inexact Rounded
1974pwsx3943 power 0.524 0.5 -> 0.724 Inexact Rounded
1975pwsx3944 power 0.0524 0.5 -> 0.229 Inexact Rounded
1976pwsx3945 power 0.525 0.5 -> 0.725 Inexact Rounded
1977pwsx3946 power 0.0525 0.5 -> 0.229 Inexact Rounded
1978pwsx3947 power 0.526 0.5 -> 0.725 Inexact Rounded
1979pwsx3948 power 0.0526 0.5 -> 0.229 Inexact Rounded
1980pwsx3949 power 0.527 0.5 -> 0.726 Inexact Rounded
1981pwsx3950 power 0.0527 0.5 -> 0.230 Inexact Rounded
1982pwsx3951 power 0.528 0.5 -> 0.727 Inexact Rounded
1983pwsx3952 power 0.0528 0.5 -> 0.230 Inexact Rounded
1984pwsx3953 power 0.529 0.5 -> 0.727 Inexact Rounded
1985pwsx3954 power 0.0529 0.5 -> 0.230 Inexact Rounded
1986pwsx3955 power 0.531 0.5 -> 0.729 Inexact Rounded
1987pwsx3956 power 0.0531 0.5 -> 0.230 Inexact Rounded
1988pwsx3957 power 0.532 0.5 -> 0.729 Inexact Rounded
1989pwsx3958 power 0.0532 0.5 -> 0.231 Inexact Rounded
1990pwsx3959 power 0.533 0.5 -> 0.730 Inexact Rounded
1991pwsx3960 power 0.0533 0.5 -> 0.231 Inexact Rounded
1992pwsx3961 power 0.534 0.5 -> 0.731 Inexact Rounded
1993pwsx3962 power 0.0534 0.5 -> 0.231 Inexact Rounded
1994pwsx3963 power 0.535 0.5 -> 0.731 Inexact Rounded
1995pwsx3964 power 0.0535 0.5 -> 0.231 Inexact Rounded
1996pwsx3965 power 0.536 0.5 -> 0.732 Inexact Rounded
1997pwsx3966 power 0.0536 0.5 -> 0.232 Inexact Rounded
1998pwsx3967 power 0.537 0.5 -> 0.733 Inexact Rounded
1999pwsx3968 power 0.0537 0.5 -> 0.232 Inexact Rounded
2000pwsx3969 power 0.538 0.5 -> 0.733 Inexact Rounded
2001pwsx3970 power 0.0538 0.5 -> 0.232 Inexact Rounded
2002pwsx3971 power 0.539 0.5 -> 0.734 Inexact Rounded
2003pwsx3972 power 0.0539 0.5 -> 0.232 Inexact Rounded
2004pwsx3973 power 0.541 0.5 -> 0.736 Inexact Rounded
2005pwsx3974 power 0.0541 0.5 -> 0.233 Inexact Rounded
2006pwsx3975 power 0.542 0.5 -> 0.736 Inexact Rounded
2007pwsx3976 power 0.0542 0.5 -> 0.233 Inexact Rounded
2008pwsx3977 power 0.543 0.5 -> 0.737 Inexact Rounded
2009pwsx3978 power 0.0543 0.5 -> 0.233 Inexact Rounded
2010pwsx3979 power 0.544 0.5 -> 0.738 Inexact Rounded
2011pwsx3980 power 0.0544 0.5 -> 0.233 Inexact Rounded
2012pwsx3981 power 0.545 0.5 -> 0.738 Inexact Rounded
2013pwsx3982 power 0.0545 0.5 -> 0.233 Inexact Rounded
2014pwsx3983 power 0.546 0.5 -> 0.739 Inexact Rounded
2015pwsx3984 power 0.0546 0.5 -> 0.234 Inexact Rounded
2016pwsx3985 power 0.547 0.5 -> 0.740 Inexact Rounded
2017pwsx3986 power 0.0547 0.5 -> 0.234 Inexact Rounded
2018pwsx3987 power 0.548 0.5 -> 0.740 Inexact Rounded
2019pwsx3988 power 0.0548 0.5 -> 0.234 Inexact Rounded
2020pwsx3989 power 0.549 0.5 -> 0.741 Inexact Rounded
2021pwsx3990 power 0.0549 0.5 -> 0.234 Inexact Rounded
2022pwsx3991 power 0.551 0.5 -> 0.742 Inexact Rounded
2023pwsx3992 power 0.0551 0.5 -> 0.235 Inexact Rounded
2024pwsx3993 power 0.552 0.5 -> 0.743 Inexact Rounded
2025pwsx3994 power 0.0552 0.5 -> 0.235 Inexact Rounded
2026pwsx3995 power 0.553 0.5 -> 0.744 Inexact Rounded
2027pwsx3996 power 0.0553 0.5 -> 0.235 Inexact Rounded
2028pwsx3997 power 0.554 0.5 -> 0.744 Inexact Rounded
2029pwsx3998 power 0.0554 0.5 -> 0.235 Inexact Rounded
2030pwsx3999 power 0.555 0.5 -> 0.745 Inexact Rounded
2031pwsx4000 power 0.0555 0.5 -> 0.236 Inexact Rounded
2032pwsx4001 power 0.556 0.5 -> 0.746 Inexact Rounded
2033pwsx4002 power 0.0556 0.5 -> 0.236 Inexact Rounded
2034pwsx4003 power 0.557 0.5 -> 0.746 Inexact Rounded
2035pwsx4004 power 0.0557 0.5 -> 0.236 Inexact Rounded
2036pwsx4005 power 0.558 0.5 -> 0.747 Inexact Rounded
2037pwsx4006 power 0.0558 0.5 -> 0.236 Inexact Rounded
2038pwsx4007 power 0.559 0.5 -> 0.748 Inexact Rounded
2039pwsx4008 power 0.0559 0.5 -> 0.236 Inexact Rounded
2040pwsx4009 power 0.561 0.5 -> 0.749 Inexact Rounded
2041pwsx4010 power 0.0561 0.5 -> 0.237 Inexact Rounded
2042pwsx4011 power 0.562 0.5 -> 0.750 Inexact Rounded
2043pwsx4012 power 0.0562 0.5 -> 0.237 Inexact Rounded
2044pwsx4013 power 0.563 0.5 -> 0.750 Inexact Rounded
2045pwsx4014 power 0.0563 0.5 -> 0.237 Inexact Rounded
2046pwsx4015 power 0.564 0.5 -> 0.751 Inexact Rounded
2047pwsx4016 power 0.0564 0.5 -> 0.237 Inexact Rounded
2048pwsx4017 power 0.565 0.5 -> 0.752 Inexact Rounded
2049pwsx4018 power 0.0565 0.5 -> 0.238 Inexact Rounded
2050pwsx4019 power 0.566 0.5 -> 0.752 Inexact Rounded
2051pwsx4020 power 0.0566 0.5 -> 0.238 Inexact Rounded
2052pwsx4021 power 0.567 0.5 -> 0.753 Inexact Rounded
2053pwsx4022 power 0.0567 0.5 -> 0.238 Inexact Rounded
2054pwsx4023 power 0.568 0.5 -> 0.754 Inexact Rounded
2055pwsx4024 power 0.0568 0.5 -> 0.238 Inexact Rounded
2056pwsx4025 power 0.569 0.5 -> 0.754 Inexact Rounded
2057pwsx4026 power 0.0569 0.5 -> 0.239 Inexact Rounded
2058pwsx4027 power 0.571 0.5 -> 0.756 Inexact Rounded
2059pwsx4028 power 0.0571 0.5 -> 0.239 Inexact Rounded
2060pwsx4029 power 0.572 0.5 -> 0.756 Inexact Rounded
2061pwsx4030 power 0.0572 0.5 -> 0.239 Inexact Rounded
2062pwsx4031 power 0.573 0.5 -> 0.757 Inexact Rounded
2063pwsx4032 power 0.0573 0.5 -> 0.239 Inexact Rounded
2064pwsx4033 power 0.574 0.5 -> 0.758 Inexact Rounded
2065pwsx4034 power 0.0574 0.5 -> 0.240 Inexact Rounded
2066pwsx4035 power 0.575 0.5 -> 0.758 Inexact Rounded
2067pwsx4036 power 0.0575 0.5 -> 0.240 Inexact Rounded
2068pwsx4037 power 0.576 0.5 -> 0.759 Inexact Rounded
2069pwsx4038 power 0.0576 0.5 -> 0.240 Inexact Rounded
2070pwsx4039 power 0.577 0.5 -> 0.760 Inexact Rounded
2071pwsx4040 power 0.0577 0.5 -> 0.240 Inexact Rounded
2072pwsx4041 power 0.578 0.5 -> 0.760 Inexact Rounded
2073pwsx4042 power 0.0578 0.5 -> 0.240 Inexact Rounded
2074pwsx4043 power 0.579 0.5 -> 0.761 Inexact Rounded
2075pwsx4044 power 0.0579 0.5 -> 0.241 Inexact Rounded
2076pwsx4045 power 0.581 0.5 -> 0.762 Inexact Rounded
2077pwsx4046 power 0.0581 0.5 -> 0.241 Inexact Rounded
2078pwsx4047 power 0.582 0.5 -> 0.763 Inexact Rounded
2079pwsx4048 power 0.0582 0.5 -> 0.241 Inexact Rounded
2080pwsx4049 power 0.583 0.5 -> 0.764 Inexact Rounded
2081pwsx4050 power 0.0583 0.5 -> 0.241 Inexact Rounded
2082pwsx4051 power 0.584 0.5 -> 0.764 Inexact Rounded
2083pwsx4052 power 0.0584 0.5 -> 0.242 Inexact Rounded
2084pwsx4053 power 0.585 0.5 -> 0.765 Inexact Rounded
2085pwsx4054 power 0.0585 0.5 -> 0.242 Inexact Rounded
2086pwsx4055 power 0.586 0.5 -> 0.766 Inexact Rounded
2087pwsx4056 power 0.0586 0.5 -> 0.242 Inexact Rounded
2088pwsx4057 power 0.587 0.5 -> 0.766 Inexact Rounded
2089pwsx4058 power 0.0587 0.5 -> 0.242 Inexact Rounded
2090pwsx4059 power 0.588 0.5 -> 0.767 Inexact Rounded
2091pwsx4060 power 0.0588 0.5 -> 0.242 Inexact Rounded
2092pwsx4061 power 0.589 0.5 -> 0.767 Inexact Rounded
2093pwsx4062 power 0.0589 0.5 -> 0.243 Inexact Rounded
2094pwsx4063 power 0.591 0.5 -> 0.769 Inexact Rounded
2095pwsx4064 power 0.0591 0.5 -> 0.243 Inexact Rounded
2096pwsx4065 power 0.592 0.5 -> 0.769 Inexact Rounded
2097pwsx4066 power 0.0592 0.5 -> 0.243 Inexact Rounded
2098pwsx4067 power 0.593 0.5 -> 0.770 Inexact Rounded
2099pwsx4068 power 0.0593 0.5 -> 0.244 Inexact Rounded
2100pwsx4069 power 0.594 0.5 -> 0.771 Inexact Rounded
2101pwsx4070 power 0.0594 0.5 -> 0.244 Inexact Rounded
2102pwsx4071 power 0.595 0.5 -> 0.771 Inexact Rounded
2103pwsx4072 power 0.0595 0.5 -> 0.244 Inexact Rounded
2104pwsx4073 power 0.596 0.5 -> 0.772 Inexact Rounded
2105pwsx4074 power 0.0596 0.5 -> 0.244 Inexact Rounded
2106pwsx4075 power 0.597 0.5 -> 0.773 Inexact Rounded
2107pwsx4076 power 0.0597 0.5 -> 0.244 Inexact Rounded
2108pwsx4077 power 0.598 0.5 -> 0.773 Inexact Rounded
2109pwsx4078 power 0.0598 0.5 -> 0.245 Inexact Rounded
2110pwsx4079 power 0.599 0.5 -> 0.774 Inexact Rounded
2111pwsx4080 power 0.0599 0.5 -> 0.245 Inexact Rounded
2112pwsx4081 power 0.601 0.5 -> 0.775 Inexact Rounded
2113pwsx4082 power 0.0601 0.5 -> 0.245 Inexact Rounded
2114pwsx4083 power 0.602 0.5 -> 0.776 Inexact Rounded
2115pwsx4084 power 0.0602 0.5 -> 0.245 Inexact Rounded
2116pwsx4085 power 0.603 0.5 -> 0.777 Inexact Rounded
2117pwsx4086 power 0.0603 0.5 -> 0.246 Inexact Rounded
2118pwsx4087 power 0.604 0.5 -> 0.777 Inexact Rounded
2119pwsx4088 power 0.0604 0.5 -> 0.246 Inexact Rounded
2120pwsx4089 power 0.605 0.5 -> 0.778 Inexact Rounded
2121pwsx4090 power 0.0605 0.5 -> 0.246 Inexact Rounded
2122pwsx4091 power 0.606 0.5 -> 0.778 Inexact Rounded
2123pwsx4092 power 0.0606 0.5 -> 0.246 Inexact Rounded
2124pwsx4093 power 0.607 0.5 -> 0.779 Inexact Rounded
2125pwsx4094 power 0.0607 0.5 -> 0.246 Inexact Rounded
2126pwsx4095 power 0.608 0.5 -> 0.780 Inexact Rounded
2127pwsx4096 power 0.0608 0.5 -> 0.247 Inexact Rounded
2128pwsx4097 power 0.609 0.5 -> 0.780 Inexact Rounded
2129pwsx4098 power 0.0609 0.5 -> 0.247 Inexact Rounded
2130pwsx4099 power 0.611 0.5 -> 0.782 Inexact Rounded
2131pwsx4100 power 0.0611 0.5 -> 0.247 Inexact Rounded
2132pwsx4101 power 0.612 0.5 -> 0.782 Inexact Rounded
2133pwsx4102 power 0.0612 0.5 -> 0.247 Inexact Rounded
2134pwsx4103 power 0.613 0.5 -> 0.783 Inexact Rounded
2135pwsx4104 power 0.0613 0.5 -> 0.248 Inexact Rounded
2136pwsx4105 power 0.614 0.5 -> 0.784 Inexact Rounded
2137pwsx4106 power 0.0614 0.5 -> 0.248 Inexact Rounded
2138pwsx4107 power 0.615 0.5 -> 0.784 Inexact Rounded
2139pwsx4108 power 0.0615 0.5 -> 0.248 Inexact Rounded
2140pwsx4109 power 0.616 0.5 -> 0.785 Inexact Rounded
2141pwsx4110 power 0.0616 0.5 -> 0.248 Inexact Rounded
2142pwsx4111 power 0.617 0.5 -> 0.785 Inexact Rounded
2143pwsx4112 power 0.0617 0.5 -> 0.248 Inexact Rounded
2144pwsx4113 power 0.618 0.5 -> 0.786 Inexact Rounded
2145pwsx4114 power 0.0618 0.5 -> 0.249 Inexact Rounded
2146pwsx4115 power 0.619 0.5 -> 0.787 Inexact Rounded
2147pwsx4116 power 0.0619 0.5 -> 0.249 Inexact Rounded
2148pwsx4117 power 0.621 0.5 -> 0.788 Inexact Rounded
2149pwsx4118 power 0.0621 0.5 -> 0.249 Inexact Rounded
2150pwsx4119 power 0.622 0.5 -> 0.789 Inexact Rounded
2151pwsx4120 power 0.0622 0.5 -> 0.249 Inexact Rounded
2152pwsx4121 power 0.623 0.5 -> 0.789 Inexact Rounded
2153pwsx4122 power 0.0623 0.5 -> 0.250 Inexact Rounded
2154pwsx4123 power 0.624 0.5 -> 0.790 Inexact Rounded
2155pwsx4124 power 0.0624 0.5 -> 0.250 Inexact Rounded
2156pwsx4125 power 0.625 0.5 -> 0.791 Inexact Rounded
2157pwsx4126 power 0.0625 0.5 -> 0.250 Inexact Rounded
2158pwsx4127 power 0.626 0.5 -> 0.791 Inexact Rounded
2159pwsx4128 power 0.0626 0.5 -> 0.250 Inexact Rounded
2160pwsx4129 power 0.627 0.5 -> 0.792 Inexact Rounded
2161pwsx4130 power 0.0627 0.5 -> 0.250 Inexact Rounded
2162pwsx4131 power 0.628 0.5 -> 0.792 Inexact Rounded
2163pwsx4132 power 0.0628 0.5 -> 0.251 Inexact Rounded
2164pwsx4133 power 0.629 0.5 -> 0.793 Inexact Rounded
2165pwsx4134 power 0.0629 0.5 -> 0.251 Inexact Rounded
2166pwsx4135 power 0.631 0.5 -> 0.794 Inexact Rounded
2167pwsx4136 power 0.0631 0.5 -> 0.251 Inexact Rounded
2168pwsx4137 power 0.632 0.5 -> 0.795 Inexact Rounded
2169pwsx4138 power 0.0632 0.5 -> 0.251 Inexact Rounded
2170pwsx4139 power 0.633 0.5 -> 0.796 Inexact Rounded
2171pwsx4140 power 0.0633 0.5 -> 0.252 Inexact Rounded
2172pwsx4141 power 0.634 0.5 -> 0.796 Inexact Rounded
2173pwsx4142 power 0.0634 0.5 -> 0.252 Inexact Rounded
2174pwsx4143 power 0.635 0.5 -> 0.797 Inexact Rounded
2175pwsx4144 power 0.0635 0.5 -> 0.252 Inexact Rounded
2176pwsx4145 power 0.636 0.5 -> 0.797 Inexact Rounded
2177pwsx4146 power 0.0636 0.5 -> 0.252 Inexact Rounded
2178pwsx4147 power 0.637 0.5 -> 0.798 Inexact Rounded
2179pwsx4148 power 0.0637 0.5 -> 0.252 Inexact Rounded
2180pwsx4149 power 0.638 0.5 -> 0.799 Inexact Rounded
2181pwsx4150 power 0.0638 0.5 -> 0.253 Inexact Rounded
2182pwsx4151 power 0.639 0.5 -> 0.799 Inexact Rounded
2183pwsx4152 power 0.0639 0.5 -> 0.253 Inexact Rounded
2184pwsx4153 power 0.641 0.5 -> 0.801 Inexact Rounded
2185pwsx4154 power 0.0641 0.5 -> 0.253 Inexact Rounded
2186pwsx4155 power 0.642 0.5 -> 0.801 Inexact Rounded
2187pwsx4156 power 0.0642 0.5 -> 0.253 Inexact Rounded
2188pwsx4157 power 0.643 0.5 -> 0.802 Inexact Rounded
2189pwsx4158 power 0.0643 0.5 -> 0.254 Inexact Rounded
2190pwsx4159 power 0.644 0.5 -> 0.802 Inexact Rounded
2191pwsx4160 power 0.0644 0.5 -> 0.254 Inexact Rounded
2192pwsx4161 power 0.645 0.5 -> 0.803 Inexact Rounded
2193pwsx4162 power 0.0645 0.5 -> 0.254 Inexact Rounded
2194pwsx4163 power 0.646 0.5 -> 0.804 Inexact Rounded
2195pwsx4164 power 0.0646 0.5 -> 0.254 Inexact Rounded
2196pwsx4165 power 0.647 0.5 -> 0.804 Inexact Rounded
2197pwsx4166 power 0.0647 0.5 -> 0.254 Inexact Rounded
2198pwsx4167 power 0.648 0.5 -> 0.805 Inexact Rounded
2199pwsx4168 power 0.0648 0.5 -> 0.255 Inexact Rounded
2200pwsx4169 power 0.649 0.5 -> 0.806 Inexact Rounded
2201pwsx4170 power 0.0649 0.5 -> 0.255 Inexact Rounded
2202pwsx4171 power 0.651 0.5 -> 0.807 Inexact Rounded
2203pwsx4172 power 0.0651 0.5 -> 0.255 Inexact Rounded
2204pwsx4173 power 0.652 0.5 -> 0.807 Inexact Rounded
2205pwsx4174 power 0.0652 0.5 -> 0.255 Inexact Rounded
2206pwsx4175 power 0.653 0.5 -> 0.808 Inexact Rounded
2207pwsx4176 power 0.0653 0.5 -> 0.256 Inexact Rounded
2208pwsx4177 power 0.654 0.5 -> 0.809 Inexact Rounded
2209pwsx4178 power 0.0654 0.5 -> 0.256 Inexact Rounded
2210pwsx4179 power 0.655 0.5 -> 0.809 Inexact Rounded
2211pwsx4180 power 0.0655 0.5 -> 0.256 Inexact Rounded
2212pwsx4181 power 0.656 0.5 -> 0.810 Inexact Rounded
2213pwsx4182 power 0.0656 0.5 -> 0.256 Inexact Rounded
2214pwsx4183 power 0.657 0.5 -> 0.811 Inexact Rounded
2215pwsx4184 power 0.0657 0.5 -> 0.256 Inexact Rounded
2216pwsx4185 power 0.658 0.5 -> 0.811 Inexact Rounded
2217pwsx4186 power 0.0658 0.5 -> 0.257 Inexact Rounded
2218pwsx4187 power 0.659 0.5 -> 0.812 Inexact Rounded
2219pwsx4188 power 0.0659 0.5 -> 0.257 Inexact Rounded
2220pwsx4189 power 0.661 0.5 -> 0.813 Inexact Rounded
2221pwsx4190 power 0.0661 0.5 -> 0.257 Inexact Rounded
2222pwsx4191 power 0.662 0.5 -> 0.814 Inexact Rounded
2223pwsx4192 power 0.0662 0.5 -> 0.257 Inexact Rounded
2224pwsx4193 power 0.663 0.5 -> 0.814 Inexact Rounded
2225pwsx4194 power 0.0663 0.5 -> 0.257 Inexact Rounded
2226pwsx4195 power 0.664 0.5 -> 0.815 Inexact Rounded
2227pwsx4196 power 0.0664 0.5 -> 0.258 Inexact Rounded
2228pwsx4197 power 0.665 0.5 -> 0.815 Inexact Rounded
2229pwsx4198 power 0.0665 0.5 -> 0.258 Inexact Rounded
2230pwsx4199 power 0.666 0.5 -> 0.816 Inexact Rounded
2231pwsx4200 power 0.0666 0.5 -> 0.258 Inexact Rounded
2232pwsx4201 power 0.667 0.5 -> 0.817 Inexact Rounded
2233pwsx4202 power 0.0667 0.5 -> 0.258 Inexact Rounded
2234pwsx4203 power 0.668 0.5 -> 0.817 Inexact Rounded
2235pwsx4204 power 0.0668 0.5 -> 0.258 Inexact Rounded
2236pwsx4205 power 0.669 0.5 -> 0.818 Inexact Rounded
2237pwsx4206 power 0.0669 0.5 -> 0.259 Inexact Rounded
2238pwsx4207 power 0.671 0.5 -> 0.819 Inexact Rounded
2239pwsx4208 power 0.0671 0.5 -> 0.259 Inexact Rounded
2240pwsx4209 power 0.672 0.5 -> 0.820 Inexact Rounded
2241pwsx4210 power 0.0672 0.5 -> 0.259 Inexact Rounded
2242pwsx4211 power 0.673 0.5 -> 0.820 Inexact Rounded
2243pwsx4212 power 0.0673 0.5 -> 0.259 Inexact Rounded
2244pwsx4213 power 0.674 0.5 -> 0.821 Inexact Rounded
2245pwsx4214 power 0.0674 0.5 -> 0.260 Inexact Rounded
2246pwsx4215 power 0.675 0.5 -> 0.822 Inexact Rounded
2247pwsx4216 power 0.0675 0.5 -> 0.260 Inexact Rounded
2248pwsx4217 power 0.676 0.5 -> 0.822 Inexact Rounded
2249pwsx4218 power 0.0676 0.5 -> 0.260 Inexact Rounded
2250pwsx4219 power 0.677 0.5 -> 0.823 Inexact Rounded
2251pwsx4220 power 0.0677 0.5 -> 0.260 Inexact Rounded
2252pwsx4221 power 0.678 0.5 -> 0.823 Inexact Rounded
2253pwsx4222 power 0.0678 0.5 -> 0.260 Inexact Rounded
2254pwsx4223 power 0.679 0.5 -> 0.824 Inexact Rounded
2255pwsx4224 power 0.0679 0.5 -> 0.261 Inexact Rounded
2256pwsx4225 power 0.681 0.5 -> 0.825 Inexact Rounded
2257pwsx4226 power 0.0681 0.5 -> 0.261 Inexact Rounded
2258pwsx4227 power 0.682 0.5 -> 0.826 Inexact Rounded
2259pwsx4228 power 0.0682 0.5 -> 0.261 Inexact Rounded
2260pwsx4229 power 0.683 0.5 -> 0.826 Inexact Rounded
2261pwsx4230 power 0.0683 0.5 -> 0.261 Inexact Rounded
2262pwsx4231 power 0.684 0.5 -> 0.827 Inexact Rounded
2263pwsx4232 power 0.0684 0.5 -> 0.262 Inexact Rounded
2264pwsx4233 power 0.685 0.5 -> 0.828 Inexact Rounded
2265pwsx4234 power 0.0685 0.5 -> 0.262 Inexact Rounded
2266pwsx4235 power 0.686 0.5 -> 0.828 Inexact Rounded
2267pwsx4236 power 0.0686 0.5 -> 0.262 Inexact Rounded
2268pwsx4237 power 0.687 0.5 -> 0.829 Inexact Rounded
2269pwsx4238 power 0.0687 0.5 -> 0.262 Inexact Rounded
2270pwsx4239 power 0.688 0.5 -> 0.829 Inexact Rounded
2271pwsx4240 power 0.0688 0.5 -> 0.262 Inexact Rounded
2272pwsx4241 power 0.689 0.5 -> 0.830 Inexact Rounded
2273pwsx4242 power 0.0689 0.5 -> 0.262 Inexact Rounded
2274pwsx4243 power 0.691 0.5 -> 0.831 Inexact Rounded
2275pwsx4244 power 0.0691 0.5 -> 0.263 Inexact Rounded
2276pwsx4245 power 0.692 0.5 -> 0.832 Inexact Rounded
2277pwsx4246 power 0.0692 0.5 -> 0.263 Inexact Rounded
2278pwsx4247 power 0.693 0.5 -> 0.832 Inexact Rounded
2279pwsx4248 power 0.0693 0.5 -> 0.263 Inexact Rounded
2280pwsx4249 power 0.694 0.5 -> 0.833 Inexact Rounded
2281pwsx4250 power 0.0694 0.5 -> 0.263 Inexact Rounded
2282pwsx4251 power 0.695 0.5 -> 0.834 Inexact Rounded
2283pwsx4252 power 0.0695 0.5 -> 0.264 Inexact Rounded
2284pwsx4253 power 0.696 0.5 -> 0.834 Inexact Rounded
2285pwsx4254 power 0.0696 0.5 -> 0.264 Inexact Rounded
2286pwsx4255 power 0.697 0.5 -> 0.835 Inexact Rounded
2287pwsx4256 power 0.0697 0.5 -> 0.264 Inexact Rounded
2288pwsx4257 power 0.698 0.5 -> 0.835 Inexact Rounded
2289pwsx4258 power 0.0698 0.5 -> 0.264 Inexact Rounded
2290pwsx4259 power 0.699 0.5 -> 0.836 Inexact Rounded
2291pwsx4260 power 0.0699 0.5 -> 0.264 Inexact Rounded
2292pwsx4261 power 0.701 0.5 -> 0.837 Inexact Rounded
2293pwsx4262 power 0.0701 0.5 -> 0.265 Inexact Rounded
2294pwsx4263 power 0.702 0.5 -> 0.838 Inexact Rounded
2295pwsx4264 power 0.0702 0.5 -> 0.265 Inexact Rounded
2296pwsx4265 power 0.703 0.5 -> 0.838 Inexact Rounded
2297pwsx4266 power 0.0703 0.5 -> 0.265 Inexact Rounded
2298pwsx4267 power 0.704 0.5 -> 0.839 Inexact Rounded
2299pwsx4268 power 0.0704 0.5 -> 0.265 Inexact Rounded
2300pwsx4269 power 0.705 0.5 -> 0.840 Inexact Rounded
2301pwsx4270 power 0.0705 0.5 -> 0.266 Inexact Rounded
2302pwsx4271 power 0.706 0.5 -> 0.840 Inexact Rounded
2303pwsx4272 power 0.0706 0.5 -> 0.266 Inexact Rounded
2304pwsx4273 power 0.707 0.5 -> 0.841 Inexact Rounded
2305pwsx4274 power 0.0707 0.5 -> 0.266 Inexact Rounded
2306pwsx4275 power 0.708 0.5 -> 0.841 Inexact Rounded
2307pwsx4276 power 0.0708 0.5 -> 0.266 Inexact Rounded
2308pwsx4277 power 0.709 0.5 -> 0.842 Inexact Rounded
2309pwsx4278 power 0.0709 0.5 -> 0.266 Inexact Rounded
2310pwsx4279 power 0.711 0.5 -> 0.843 Inexact Rounded
2311pwsx4280 power 0.0711 0.5 -> 0.267 Inexact Rounded
2312pwsx4281 power 0.712 0.5 -> 0.844 Inexact Rounded
2313pwsx4282 power 0.0712 0.5 -> 0.267 Inexact Rounded
2314pwsx4283 power 0.713 0.5 -> 0.844 Inexact Rounded
2315pwsx4284 power 0.0713 0.5 -> 0.267 Inexact Rounded
2316pwsx4285 power 0.714 0.5 -> 0.845 Inexact Rounded
2317pwsx4286 power 0.0714 0.5 -> 0.267 Inexact Rounded
2318pwsx4287 power 0.715 0.5 -> 0.846 Inexact Rounded
2319pwsx4288 power 0.0715 0.5 -> 0.267 Inexact Rounded
2320pwsx4289 power 0.716 0.5 -> 0.846 Inexact Rounded
2321pwsx4290 power 0.0716 0.5 -> 0.268 Inexact Rounded
2322pwsx4291 power 0.717 0.5 -> 0.847 Inexact Rounded
2323pwsx4292 power 0.0717 0.5 -> 0.268 Inexact Rounded
2324pwsx4293 power 0.718 0.5 -> 0.847 Inexact Rounded
2325pwsx4294 power 0.0718 0.5 -> 0.268 Inexact Rounded
2326pwsx4295 power 0.719 0.5 -> 0.848 Inexact Rounded
2327pwsx4296 power 0.0719 0.5 -> 0.268 Inexact Rounded
2328pwsx4297 power 0.721 0.5 -> 0.849 Inexact Rounded
2329pwsx4298 power 0.0721 0.5 -> 0.269 Inexact Rounded
2330pwsx4299 power 0.722 0.5 -> 0.850 Inexact Rounded
2331pwsx4300 power 0.0722 0.5 -> 0.269 Inexact Rounded
2332pwsx4301 power 0.723 0.5 -> 0.850 Inexact Rounded
2333pwsx4302 power 0.0723 0.5 -> 0.269 Inexact Rounded
2334pwsx4303 power 0.724 0.5 -> 0.851 Inexact Rounded
2335pwsx4304 power 0.0724 0.5 -> 0.269 Inexact Rounded
2336pwsx4305 power 0.725 0.5 -> 0.851 Inexact Rounded
2337pwsx4306 power 0.0725 0.5 -> 0.269 Inexact Rounded
2338pwsx4307 power 0.726 0.5 -> 0.852 Inexact Rounded
2339pwsx4308 power 0.0726 0.5 -> 0.269 Inexact Rounded
2340pwsx4309 power 0.727 0.5 -> 0.853 Inexact Rounded
2341pwsx4310 power 0.0727 0.5 -> 0.270 Inexact Rounded
2342pwsx4311 power 0.728 0.5 -> 0.853 Inexact Rounded
2343pwsx4312 power 0.0728 0.5 -> 0.270 Inexact Rounded
2344pwsx4313 power 0.729 0.5 -> 0.854 Inexact Rounded
2345pwsx4314 power 0.0729 0.5 -> 0.270 Inexact Rounded
2346pwsx4315 power 0.731 0.5 -> 0.855 Inexact Rounded
2347pwsx4316 power 0.0731 0.5 -> 0.270 Inexact Rounded
2348pwsx4317 power 0.732 0.5 -> 0.856 Inexact Rounded
2349pwsx4318 power 0.0732 0.5 -> 0.271 Inexact Rounded
2350pwsx4319 power 0.733 0.5 -> 0.856 Inexact Rounded
2351pwsx4320 power 0.0733 0.5 -> 0.271 Inexact Rounded
2352pwsx4321 power 0.734 0.5 -> 0.857 Inexact Rounded
2353pwsx4322 power 0.0734 0.5 -> 0.271 Inexact Rounded
2354pwsx4323 power 0.735 0.5 -> 0.857 Inexact Rounded
2355pwsx4324 power 0.0735 0.5 -> 0.271 Inexact Rounded
2356pwsx4325 power 0.736 0.5 -> 0.858 Inexact Rounded
2357pwsx4326 power 0.0736 0.5 -> 0.271 Inexact Rounded
2358pwsx4327 power 0.737 0.5 -> 0.858 Inexact Rounded
2359pwsx4328 power 0.0737 0.5 -> 0.271 Inexact Rounded
2360pwsx4329 power 0.738 0.5 -> 0.859 Inexact Rounded
2361pwsx4330 power 0.0738 0.5 -> 0.272 Inexact Rounded
2362pwsx4331 power 0.739 0.5 -> 0.860 Inexact Rounded
2363pwsx4332 power 0.0739 0.5 -> 0.272 Inexact Rounded
2364pwsx4333 power 0.741 0.5 -> 0.861 Inexact Rounded
2365pwsx4334 power 0.0741 0.5 -> 0.272 Inexact Rounded
2366pwsx4335 power 0.742 0.5 -> 0.861 Inexact Rounded
2367pwsx4336 power 0.0742 0.5 -> 0.272 Inexact Rounded
2368pwsx4337 power 0.743 0.5 -> 0.862 Inexact Rounded
2369pwsx4338 power 0.0743 0.5 -> 0.273 Inexact Rounded
2370pwsx4339 power 0.744 0.5 -> 0.863 Inexact Rounded
2371pwsx4340 power 0.0744 0.5 -> 0.273 Inexact Rounded
2372pwsx4341 power 0.745 0.5 -> 0.863 Inexact Rounded
2373pwsx4342 power 0.0745 0.5 -> 0.273 Inexact Rounded
2374pwsx4343 power 0.746 0.5 -> 0.864 Inexact Rounded
2375pwsx4344 power 0.0746 0.5 -> 0.273 Inexact Rounded
2376pwsx4345 power 0.747 0.5 -> 0.864 Inexact Rounded
2377pwsx4346 power 0.0747 0.5 -> 0.273 Inexact Rounded
2378pwsx4347 power 0.748 0.5 -> 0.865 Inexact Rounded
2379pwsx4348 power 0.0748 0.5 -> 0.273 Inexact Rounded
2380pwsx4349 power 0.749 0.5 -> 0.865 Inexact Rounded
2381pwsx4350 power 0.0749 0.5 -> 0.274 Inexact Rounded
2382pwsx4351 power 0.751 0.5 -> 0.867 Inexact Rounded
2383pwsx4352 power 0.0751 0.5 -> 0.274 Inexact Rounded
2384pwsx4353 power 0.752 0.5 -> 0.867 Inexact Rounded
2385pwsx4354 power 0.0752 0.5 -> 0.274 Inexact Rounded
2386pwsx4355 power 0.753 0.5 -> 0.868 Inexact Rounded
2387pwsx4356 power 0.0753 0.5 -> 0.274 Inexact Rounded
2388pwsx4357 power 0.754 0.5 -> 0.868 Inexact Rounded
2389pwsx4358 power 0.0754 0.5 -> 0.275 Inexact Rounded
2390pwsx4359 power 0.755 0.5 -> 0.869 Inexact Rounded
2391pwsx4360 power 0.0755 0.5 -> 0.275 Inexact Rounded
2392pwsx4361 power 0.756 0.5 -> 0.869 Inexact Rounded
2393pwsx4362 power 0.0756 0.5 -> 0.275 Inexact Rounded
2394pwsx4363 power 0.757 0.5 -> 0.870 Inexact Rounded
2395pwsx4364 power 0.0757 0.5 -> 0.275 Inexact Rounded
2396pwsx4365 power 0.758 0.5 -> 0.871 Inexact Rounded
2397pwsx4366 power 0.0758 0.5 -> 0.275 Inexact Rounded
2398pwsx4367 power 0.759 0.5 -> 0.871 Inexact Rounded
2399pwsx4368 power 0.0759 0.5 -> 0.275 Inexact Rounded
2400pwsx4369 power 0.761 0.5 -> 0.872 Inexact Rounded
2401pwsx4370 power 0.0761 0.5 -> 0.276 Inexact Rounded
2402pwsx4371 power 0.762 0.5 -> 0.873 Inexact Rounded
2403pwsx4372 power 0.0762 0.5 -> 0.276 Inexact Rounded
2404pwsx4373 power 0.763 0.5 -> 0.873 Inexact Rounded
2405pwsx4374 power 0.0763 0.5 -> 0.276 Inexact Rounded
2406pwsx4375 power 0.764 0.5 -> 0.874 Inexact Rounded
2407pwsx4376 power 0.0764 0.5 -> 0.276 Inexact Rounded
2408pwsx4377 power 0.765 0.5 -> 0.875 Inexact Rounded
2409pwsx4378 power 0.0765 0.5 -> 0.277 Inexact Rounded
2410pwsx4379 power 0.766 0.5 -> 0.875 Inexact Rounded
2411pwsx4380 power 0.0766 0.5 -> 0.277 Inexact Rounded
2412pwsx4381 power 0.767 0.5 -> 0.876 Inexact Rounded
2413pwsx4382 power 0.0767 0.5 -> 0.277 Inexact Rounded
2414pwsx4383 power 0.768 0.5 -> 0.876 Inexact Rounded
2415pwsx4384 power 0.0768 0.5 -> 0.277 Inexact Rounded
2416pwsx4385 power 0.769 0.5 -> 0.877 Inexact Rounded
2417pwsx4386 power 0.0769 0.5 -> 0.277 Inexact Rounded
2418pwsx4387 power 0.771 0.5 -> 0.878 Inexact Rounded
2419pwsx4388 power 0.0771 0.5 -> 0.278 Inexact Rounded
2420pwsx4389 power 0.772 0.5 -> 0.879 Inexact Rounded
2421pwsx4390 power 0.0772 0.5 -> 0.278 Inexact Rounded
2422pwsx4391 power 0.773 0.5 -> 0.879 Inexact Rounded
2423pwsx4392 power 0.0773 0.5 -> 0.278 Inexact Rounded
2424pwsx4393 power 0.774 0.5 -> 0.880 Inexact Rounded
2425pwsx4394 power 0.0774 0.5 -> 0.278 Inexact Rounded
2426pwsx4395 power 0.775 0.5 -> 0.880 Inexact Rounded
2427pwsx4396 power 0.0775 0.5 -> 0.278 Inexact Rounded
2428pwsx4397 power 0.776 0.5 -> 0.881 Inexact Rounded
2429pwsx4398 power 0.0776 0.5 -> 0.279 Inexact Rounded
2430pwsx4399 power 0.777 0.5 -> 0.881 Inexact Rounded
2431pwsx4400 power 0.0777 0.5 -> 0.279 Inexact Rounded
2432pwsx4401 power 0.778 0.5 -> 0.882 Inexact Rounded
2433pwsx4402 power 0.0778 0.5 -> 0.279 Inexact Rounded
2434pwsx4403 power 0.779 0.5 -> 0.883 Inexact Rounded
2435pwsx4404 power 0.0779 0.5 -> 0.279 Inexact Rounded
2436pwsx4405 power 0.781 0.5 -> 0.884 Inexact Rounded
2437pwsx4406 power 0.0781 0.5 -> 0.279 Inexact Rounded
2438pwsx4407 power 0.782 0.5 -> 0.884 Inexact Rounded
2439pwsx4408 power 0.0782 0.5 -> 0.280 Inexact Rounded
2440pwsx4409 power 0.783 0.5 -> 0.885 Inexact Rounded
2441pwsx4410 power 0.0783 0.5 -> 0.280 Inexact Rounded
2442pwsx4411 power 0.784 0.5 -> 0.885 Inexact Rounded
2443pwsx4412 power 0.0784 0.5 -> 0.280 Inexact Rounded
2444pwsx4413 power 0.785 0.5 -> 0.886 Inexact Rounded
2445pwsx4414 power 0.0785 0.5 -> 0.280 Inexact Rounded
2446pwsx4415 power 0.786 0.5 -> 0.887 Inexact Rounded
2447pwsx4416 power 0.0786 0.5 -> 0.280 Inexact Rounded
2448pwsx4417 power 0.787 0.5 -> 0.887 Inexact Rounded
2449pwsx4418 power 0.0787 0.5 -> 0.281 Inexact Rounded
2450pwsx4419 power 0.788 0.5 -> 0.888 Inexact Rounded
2451pwsx4420 power 0.0788 0.5 -> 0.281 Inexact Rounded
2452pwsx4421 power 0.789 0.5 -> 0.888 Inexact Rounded
2453pwsx4422 power 0.0789 0.5 -> 0.281 Inexact Rounded
2454pwsx4423 power 0.791 0.5 -> 0.889 Inexact Rounded
2455pwsx4424 power 0.0791 0.5 -> 0.281 Inexact Rounded
2456pwsx4425 power 0.792 0.5 -> 0.890 Inexact Rounded
2457pwsx4426 power 0.0792 0.5 -> 0.281 Inexact Rounded
2458pwsx4427 power 0.793 0.5 -> 0.891 Inexact Rounded
2459pwsx4428 power 0.0793 0.5 -> 0.282 Inexact Rounded
2460pwsx4429 power 0.794 0.5 -> 0.891 Inexact Rounded
2461pwsx4430 power 0.0794 0.5 -> 0.282 Inexact Rounded
2462pwsx4431 power 0.795 0.5 -> 0.892 Inexact Rounded
2463pwsx4432 power 0.0795 0.5 -> 0.282 Inexact Rounded
2464pwsx4433 power 0.796 0.5 -> 0.892 Inexact Rounded
2465pwsx4434 power 0.0796 0.5 -> 0.282 Inexact Rounded
2466pwsx4435 power 0.797 0.5 -> 0.893 Inexact Rounded
2467pwsx4436 power 0.0797 0.5 -> 0.282 Inexact Rounded
2468pwsx4437 power 0.798 0.5 -> 0.893 Inexact Rounded
2469pwsx4438 power 0.0798 0.5 -> 0.282 Inexact Rounded
2470pwsx4439 power 0.799 0.5 -> 0.894 Inexact Rounded
2471pwsx4440 power 0.0799 0.5 -> 0.283 Inexact Rounded
2472pwsx4441 power 0.801 0.5 -> 0.895 Inexact Rounded
2473pwsx4442 power 0.0801 0.5 -> 0.283 Inexact Rounded
2474pwsx4443 power 0.802 0.5 -> 0.896 Inexact Rounded
2475pwsx4444 power 0.0802 0.5 -> 0.283 Inexact Rounded
2476pwsx4445 power 0.803 0.5 -> 0.896 Inexact Rounded
2477pwsx4446 power 0.0803 0.5 -> 0.283 Inexact Rounded
2478pwsx4447 power 0.804 0.5 -> 0.897 Inexact Rounded
2479pwsx4448 power 0.0804 0.5 -> 0.284 Inexact Rounded
2480pwsx4449 power 0.805 0.5 -> 0.897 Inexact Rounded
2481pwsx4450 power 0.0805 0.5 -> 0.284 Inexact Rounded
2482pwsx4451 power 0.806 0.5 -> 0.898 Inexact Rounded
2483pwsx4452 power 0.0806 0.5 -> 0.284 Inexact Rounded
2484pwsx4453 power 0.807 0.5 -> 0.898 Inexact Rounded
2485pwsx4454 power 0.0807 0.5 -> 0.284 Inexact Rounded
2486pwsx4455 power 0.808 0.5 -> 0.899 Inexact Rounded
2487pwsx4456 power 0.0808 0.5 -> 0.284 Inexact Rounded
2488pwsx4457 power 0.809 0.5 -> 0.899 Inexact Rounded
2489pwsx4458 power 0.0809 0.5 -> 0.284 Inexact Rounded
2490pwsx4459 power 0.811 0.5 -> 0.901 Inexact Rounded
2491pwsx4460 power 0.0811 0.5 -> 0.285 Inexact Rounded
2492pwsx4461 power 0.812 0.5 -> 0.901 Inexact Rounded
2493pwsx4462 power 0.0812 0.5 -> 0.285 Inexact Rounded
2494pwsx4463 power 0.813 0.5 -> 0.902 Inexact Rounded
2495pwsx4464 power 0.0813 0.5 -> 0.285 Inexact Rounded
2496pwsx4465 power 0.814 0.5 -> 0.902 Inexact Rounded
2497pwsx4466 power 0.0814 0.5 -> 0.285 Inexact Rounded
2498pwsx4467 power 0.815 0.5 -> 0.903 Inexact Rounded
2499pwsx4468 power 0.0815 0.5 -> 0.285 Inexact Rounded
2500pwsx4469 power 0.816 0.5 -> 0.903 Inexact Rounded
2501pwsx4470 power 0.0816 0.5 -> 0.286 Inexact Rounded
2502pwsx4471 power 0.817 0.5 -> 0.904 Inexact Rounded
2503pwsx4472 power 0.0817 0.5 -> 0.286 Inexact Rounded
2504pwsx4473 power 0.818 0.5 -> 0.904 Inexact Rounded
2505pwsx4474 power 0.0818 0.5 -> 0.286 Inexact Rounded
2506pwsx4475 power 0.819 0.5 -> 0.905 Inexact Rounded
2507pwsx4476 power 0.0819 0.5 -> 0.286 Inexact Rounded
2508pwsx4477 power 0.821 0.5 -> 0.906 Inexact Rounded
2509pwsx4478 power 0.0821 0.5 -> 0.287 Inexact Rounded
2510pwsx4479 power 0.822 0.5 -> 0.907 Inexact Rounded
2511pwsx4480 power 0.0822 0.5 -> 0.287 Inexact Rounded
2512pwsx4481 power 0.823 0.5 -> 0.907 Inexact Rounded
2513pwsx4482 power 0.0823 0.5 -> 0.287 Inexact Rounded
2514pwsx4483 power 0.824 0.5 -> 0.908 Inexact Rounded
2515pwsx4484 power 0.0824 0.5 -> 0.287 Inexact Rounded
2516pwsx4485 power 0.825 0.5 -> 0.908 Inexact Rounded
2517pwsx4486 power 0.0825 0.5 -> 0.287 Inexact Rounded
2518pwsx4487 power 0.826 0.5 -> 0.909 Inexact Rounded
2519pwsx4488 power 0.0826 0.5 -> 0.287 Inexact Rounded
2520pwsx4489 power 0.827 0.5 -> 0.909 Inexact Rounded
2521pwsx4490 power 0.0827 0.5 -> 0.288 Inexact Rounded
2522pwsx4491 power 0.828 0.5 -> 0.910 Inexact Rounded
2523pwsx4492 power 0.0828 0.5 -> 0.288 Inexact Rounded
2524pwsx4493 power 0.829 0.5 -> 0.910 Inexact Rounded
2525pwsx4494 power 0.0829 0.5 -> 0.288 Inexact Rounded
2526pwsx4495 power 0.831 0.5 -> 0.912 Inexact Rounded
2527pwsx4496 power 0.0831 0.5 -> 0.288 Inexact Rounded
2528pwsx4497 power 0.832 0.5 -> 0.912 Inexact Rounded
2529pwsx4498 power 0.0832 0.5 -> 0.288 Inexact Rounded
2530pwsx4499 power 0.833 0.5 -> 0.913 Inexact Rounded
2531pwsx4500 power 0.0833 0.5 -> 0.289 Inexact Rounded
2532pwsx4501 power 0.834 0.5 -> 0.913 Inexact Rounded
2533pwsx4502 power 0.0834 0.5 -> 0.289 Inexact Rounded
2534pwsx4503 power 0.835 0.5 -> 0.914 Inexact Rounded
2535pwsx4504 power 0.0835 0.5 -> 0.289 Inexact Rounded
2536pwsx4505 power 0.836 0.5 -> 0.914 Inexact Rounded
2537pwsx4506 power 0.0836 0.5 -> 0.289 Inexact Rounded
2538pwsx4507 power 0.837 0.5 -> 0.915 Inexact Rounded
2539pwsx4508 power 0.0837 0.5 -> 0.289 Inexact Rounded
2540pwsx4509 power 0.838 0.5 -> 0.915 Inexact Rounded
2541pwsx4510 power 0.0838 0.5 -> 0.289 Inexact Rounded
2542pwsx4511 power 0.839 0.5 -> 0.916 Inexact Rounded
2543pwsx4512 power 0.0839 0.5 -> 0.290 Inexact Rounded
2544pwsx4513 power 0.841 0.5 -> 0.917 Inexact Rounded
2545pwsx4514 power 0.0841 0.5 -> 0.290 Inexact Rounded
2546pwsx4515 power 0.842 0.5 -> 0.918 Inexact Rounded
2547pwsx4516 power 0.0842 0.5 -> 0.290 Inexact Rounded
2548pwsx4517 power 0.843 0.5 -> 0.918 Inexact Rounded
2549pwsx4518 power 0.0843 0.5 -> 0.290 Inexact Rounded
2550pwsx4519 power 0.844 0.5 -> 0.919 Inexact Rounded
2551pwsx4520 power 0.0844 0.5 -> 0.291 Inexact Rounded
2552pwsx4521 power 0.845 0.5 -> 0.919 Inexact Rounded
2553pwsx4522 power 0.0845 0.5 -> 0.291 Inexact Rounded
2554pwsx4523 power 0.846 0.5 -> 0.920 Inexact Rounded
2555pwsx4524 power 0.0846 0.5 -> 0.291 Inexact Rounded
2556pwsx4525 power 0.847 0.5 -> 0.920 Inexact Rounded
2557pwsx4526 power 0.0847 0.5 -> 0.291 Inexact Rounded
2558pwsx4527 power 0.848 0.5 -> 0.921 Inexact Rounded
2559pwsx4528 power 0.0848 0.5 -> 0.291 Inexact Rounded
2560pwsx4529 power 0.849 0.5 -> 0.921 Inexact Rounded
2561pwsx4530 power 0.0849 0.5 -> 0.291 Inexact Rounded
2562pwsx4531 power 0.851 0.5 -> 0.922 Inexact Rounded
2563pwsx4532 power 0.0851 0.5 -> 0.292 Inexact Rounded
2564pwsx4533 power 0.852 0.5 -> 0.923 Inexact Rounded
2565pwsx4534 power 0.0852 0.5 -> 0.292 Inexact Rounded
2566pwsx4535 power 0.853 0.5 -> 0.924 Inexact Rounded
2567pwsx4536 power 0.0853 0.5 -> 0.292 Inexact Rounded
2568pwsx4537 power 0.854 0.5 -> 0.924 Inexact Rounded
2569pwsx4538 power 0.0854 0.5 -> 0.292 Inexact Rounded
2570pwsx4539 power 0.855 0.5 -> 0.925 Inexact Rounded
2571pwsx4540 power 0.0855 0.5 -> 0.292 Inexact Rounded
2572pwsx4541 power 0.856 0.5 -> 0.925 Inexact Rounded
2573pwsx4542 power 0.0856 0.5 -> 0.293 Inexact Rounded
2574pwsx4543 power 0.857 0.5 -> 0.926 Inexact Rounded
2575pwsx4544 power 0.0857 0.5 -> 0.293 Inexact Rounded
2576pwsx4545 power 0.858 0.5 -> 0.926 Inexact Rounded
2577pwsx4546 power 0.0858 0.5 -> 0.293 Inexact Rounded
2578pwsx4547 power 0.859 0.5 -> 0.927 Inexact Rounded
2579pwsx4548 power 0.0859 0.5 -> 0.293 Inexact Rounded
2580pwsx4549 power 0.861 0.5 -> 0.928 Inexact Rounded
2581pwsx4550 power 0.0861 0.5 -> 0.293 Inexact Rounded
2582pwsx4551 power 0.862 0.5 -> 0.928 Inexact Rounded
2583pwsx4552 power 0.0862 0.5 -> 0.294 Inexact Rounded
2584pwsx4553 power 0.863 0.5 -> 0.929 Inexact Rounded
2585pwsx4554 power 0.0863 0.5 -> 0.294 Inexact Rounded
2586pwsx4555 power 0.864 0.5 -> 0.930 Inexact Rounded
2587pwsx4556 power 0.0864 0.5 -> 0.294 Inexact Rounded
2588pwsx4557 power 0.865 0.5 -> 0.930 Inexact Rounded
2589pwsx4558 power 0.0865 0.5 -> 0.294 Inexact Rounded
2590pwsx4559 power 0.866 0.5 -> 0.931 Inexact Rounded
2591pwsx4560 power 0.0866 0.5 -> 0.294 Inexact Rounded
2592pwsx4561 power 0.867 0.5 -> 0.931 Inexact Rounded
2593pwsx4562 power 0.0867 0.5 -> 0.294 Inexact Rounded
2594pwsx4563 power 0.868 0.5 -> 0.932 Inexact Rounded
2595pwsx4564 power 0.0868 0.5 -> 0.295 Inexact Rounded
2596pwsx4565 power 0.869 0.5 -> 0.932 Inexact Rounded
2597pwsx4566 power 0.0869 0.5 -> 0.295 Inexact Rounded
2598pwsx4567 power 0.871 0.5 -> 0.933 Inexact Rounded
2599pwsx4568 power 0.0871 0.5 -> 0.295 Inexact Rounded
2600pwsx4569 power 0.872 0.5 -> 0.934 Inexact Rounded
2601pwsx4570 power 0.0872 0.5 -> 0.295 Inexact Rounded
2602pwsx4571 power 0.873 0.5 -> 0.934 Inexact Rounded
2603pwsx4572 power 0.0873 0.5 -> 0.295 Inexact Rounded
2604pwsx4573 power 0.874 0.5 -> 0.935 Inexact Rounded
2605pwsx4574 power 0.0874 0.5 -> 0.296 Inexact Rounded
2606pwsx4575 power 0.875 0.5 -> 0.935 Inexact Rounded
2607pwsx4576 power 0.0875 0.5 -> 0.296 Inexact Rounded
2608pwsx4577 power 0.876 0.5 -> 0.936 Inexact Rounded
2609pwsx4578 power 0.0876 0.5 -> 0.296 Inexact Rounded
2610pwsx4579 power 0.877 0.5 -> 0.936 Inexact Rounded
2611pwsx4580 power 0.0877 0.5 -> 0.296 Inexact Rounded
2612pwsx4581 power 0.878 0.5 -> 0.937 Inexact Rounded
2613pwsx4582 power 0.0878 0.5 -> 0.296 Inexact Rounded
2614pwsx4583 power 0.879 0.5 -> 0.938 Inexact Rounded
2615pwsx4584 power 0.0879 0.5 -> 0.296 Inexact Rounded
2616pwsx4585 power 0.881 0.5 -> 0.939 Inexact Rounded
2617pwsx4586 power 0.0881 0.5 -> 0.297 Inexact Rounded
2618pwsx4587 power 0.882 0.5 -> 0.939 Inexact Rounded
2619pwsx4588 power 0.0882 0.5 -> 0.297 Inexact Rounded
2620pwsx4589 power 0.883 0.5 -> 0.940 Inexact Rounded
2621pwsx4590 power 0.0883 0.5 -> 0.297 Inexact Rounded
2622pwsx4591 power 0.884 0.5 -> 0.940 Inexact Rounded
2623pwsx4592 power 0.0884 0.5 -> 0.297 Inexact Rounded
2624pwsx4593 power 0.885 0.5 -> 0.941 Inexact Rounded
2625pwsx4594 power 0.0885 0.5 -> 0.297 Inexact Rounded
2626pwsx4595 power 0.886 0.5 -> 0.941 Inexact Rounded
2627pwsx4596 power 0.0886 0.5 -> 0.298 Inexact Rounded
2628pwsx4597 power 0.887 0.5 -> 0.942 Inexact Rounded
2629pwsx4598 power 0.0887 0.5 -> 0.298 Inexact Rounded
2630pwsx4599 power 0.888 0.5 -> 0.942 Inexact Rounded
2631pwsx4600 power 0.0888 0.5 -> 0.298 Inexact Rounded
2632pwsx4601 power 0.889 0.5 -> 0.943 Inexact Rounded
2633pwsx4602 power 0.0889 0.5 -> 0.298 Inexact Rounded
2634pwsx4603 power 0.891 0.5 -> 0.944 Inexact Rounded
2635pwsx4604 power 0.0891 0.5 -> 0.298 Inexact Rounded
2636pwsx4605 power 0.892 0.5 -> 0.944 Inexact Rounded
2637pwsx4606 power 0.0892 0.5 -> 0.299 Inexact Rounded
2638pwsx4607 power 0.893 0.5 -> 0.945 Inexact Rounded
2639pwsx4608 power 0.0893 0.5 -> 0.299 Inexact Rounded
2640pwsx4609 power 0.894 0.5 -> 0.946 Inexact Rounded
2641pwsx4610 power 0.0894 0.5 -> 0.299 Inexact Rounded
2642pwsx4611 power 0.895 0.5 -> 0.946 Inexact Rounded
2643pwsx4612 power 0.0895 0.5 -> 0.299 Inexact Rounded
2644pwsx4613 power 0.896 0.5 -> 0.947 Inexact Rounded
2645pwsx4614 power 0.0896 0.5 -> 0.299 Inexact Rounded
2646pwsx4615 power 0.897 0.5 -> 0.947 Inexact Rounded
2647pwsx4616 power 0.0897 0.5 -> 0.299 Inexact Rounded
2648pwsx4617 power 0.898 0.5 -> 0.948 Inexact Rounded
2649pwsx4618 power 0.0898 0.5 -> 0.300 Inexact Rounded
2650pwsx4619 power 0.899 0.5 -> 0.948 Inexact Rounded
2651pwsx4620 power 0.0899 0.5 -> 0.300 Inexact Rounded
2652pwsx4621 power 0.901 0.5 -> 0.949 Inexact Rounded
2653pwsx4622 power 0.0901 0.5 -> 0.300 Inexact Rounded
2654pwsx4623 power 0.902 0.5 -> 0.950 Inexact Rounded
2655pwsx4624 power 0.0902 0.5 -> 0.300 Inexact Rounded
2656pwsx4625 power 0.903 0.5 -> 0.950 Inexact Rounded
2657pwsx4626 power 0.0903 0.5 -> 0.300 Inexact Rounded
2658pwsx4627 power 0.904 0.5 -> 0.951 Inexact Rounded
2659pwsx4628 power 0.0904 0.5 -> 0.301 Inexact Rounded
2660pwsx4629 power 0.905 0.5 -> 0.951 Inexact Rounded
2661pwsx4630 power 0.0905 0.5 -> 0.301 Inexact Rounded
2662pwsx4631 power 0.906 0.5 -> 0.952 Inexact Rounded
2663pwsx4632 power 0.0906 0.5 -> 0.301 Inexact Rounded
2664pwsx4633 power 0.907 0.5 -> 0.952 Inexact Rounded
2665pwsx4634 power 0.0907 0.5 -> 0.301 Inexact Rounded
2666pwsx4635 power 0.908 0.5 -> 0.953 Inexact Rounded
2667pwsx4636 power 0.0908 0.5 -> 0.301 Inexact Rounded
2668pwsx4637 power 0.909 0.5 -> 0.953 Inexact Rounded
2669pwsx4638 power 0.0909 0.5 -> 0.301 Inexact Rounded
2670pwsx4639 power 0.911 0.5 -> 0.954 Inexact Rounded
2671pwsx4640 power 0.0911 0.5 -> 0.302 Inexact Rounded
2672pwsx4641 power 0.912 0.5 -> 0.955 Inexact Rounded
2673pwsx4642 power 0.0912 0.5 -> 0.302 Inexact Rounded
2674pwsx4643 power 0.913 0.5 -> 0.956 Inexact Rounded
2675pwsx4644 power 0.0913 0.5 -> 0.302 Inexact Rounded
2676pwsx4645 power 0.914 0.5 -> 0.956 Inexact Rounded
2677pwsx4646 power 0.0914 0.5 -> 0.302 Inexact Rounded
2678pwsx4647 power 0.915 0.5 -> 0.957 Inexact Rounded
2679pwsx4648 power 0.0915 0.5 -> 0.302 Inexact Rounded
2680pwsx4649 power 0.916 0.5 -> 0.957 Inexact Rounded
2681pwsx4650 power 0.0916 0.5 -> 0.303 Inexact Rounded
2682pwsx4651 power 0.917 0.5 -> 0.958 Inexact Rounded
2683pwsx4652 power 0.0917 0.5 -> 0.303 Inexact Rounded
2684pwsx4653 power 0.918 0.5 -> 0.958 Inexact Rounded
2685pwsx4654 power 0.0918 0.5 -> 0.303 Inexact Rounded
2686pwsx4655 power 0.919 0.5 -> 0.959 Inexact Rounded
2687pwsx4656 power 0.0919 0.5 -> 0.303 Inexact Rounded
2688pwsx4657 power 0.921 0.5 -> 0.960 Inexact Rounded
2689pwsx4658 power 0.0921 0.5 -> 0.303 Inexact Rounded
2690pwsx4659 power 0.922 0.5 -> 0.960 Inexact Rounded
2691pwsx4660 power 0.0922 0.5 -> 0.304 Inexact Rounded
2692pwsx4661 power 0.923 0.5 -> 0.961 Inexact Rounded
2693pwsx4662 power 0.0923 0.5 -> 0.304 Inexact Rounded
2694pwsx4663 power 0.924 0.5 -> 0.961 Inexact Rounded
2695pwsx4664 power 0.0924 0.5 -> 0.304 Inexact Rounded
2696pwsx4665 power 0.925 0.5 -> 0.962 Inexact Rounded
2697pwsx4666 power 0.0925 0.5 -> 0.304 Inexact Rounded
2698pwsx4667 power 0.926 0.5 -> 0.962 Inexact Rounded
2699pwsx4668 power 0.0926 0.5 -> 0.304 Inexact Rounded
2700pwsx4669 power 0.927 0.5 -> 0.963 Inexact Rounded
2701pwsx4670 power 0.0927 0.5 -> 0.304 Inexact Rounded
2702pwsx4671 power 0.928 0.5 -> 0.963 Inexact Rounded
2703pwsx4672 power 0.0928 0.5 -> 0.305 Inexact Rounded
2704pwsx4673 power 0.929 0.5 -> 0.964 Inexact Rounded
2705pwsx4674 power 0.0929 0.5 -> 0.305 Inexact Rounded
2706pwsx4675 power 0.931 0.5 -> 0.965 Inexact Rounded
2707pwsx4676 power 0.0931 0.5 -> 0.305 Inexact Rounded
2708pwsx4677 power 0.932 0.5 -> 0.965 Inexact Rounded
2709pwsx4678 power 0.0932 0.5 -> 0.305 Inexact Rounded
2710pwsx4679 power 0.933 0.5 -> 0.966 Inexact Rounded
2711pwsx4680 power 0.0933 0.5 -> 0.305 Inexact Rounded
2712pwsx4681 power 0.934 0.5 -> 0.966 Inexact Rounded
2713pwsx4682 power 0.0934 0.5 -> 0.306 Inexact Rounded
2714pwsx4683 power 0.935 0.5 -> 0.967 Inexact Rounded
2715pwsx4684 power 0.0935 0.5 -> 0.306 Inexact Rounded
2716pwsx4685 power 0.936 0.5 -> 0.967 Inexact Rounded
2717pwsx4686 power 0.0936 0.5 -> 0.306 Inexact Rounded
2718pwsx4687 power 0.937 0.5 -> 0.968 Inexact Rounded
2719pwsx4688 power 0.0937 0.5 -> 0.306 Inexact Rounded
2720pwsx4689 power 0.938 0.5 -> 0.969 Inexact Rounded
2721pwsx4690 power 0.0938 0.5 -> 0.306 Inexact Rounded
2722pwsx4691 power 0.939 0.5 -> 0.969 Inexact Rounded
2723pwsx4692 power 0.0939 0.5 -> 0.306 Inexact Rounded
2724pwsx4693 power 0.941 0.5 -> 0.970 Inexact Rounded
2725pwsx4694 power 0.0941 0.5 -> 0.307 Inexact Rounded
2726pwsx4695 power 0.942 0.5 -> 0.971 Inexact Rounded
2727pwsx4696 power 0.0942 0.5 -> 0.307 Inexact Rounded
2728pwsx4697 power 0.943 0.5 -> 0.971 Inexact Rounded
2729pwsx4698 power 0.0943 0.5 -> 0.307 Inexact Rounded
2730pwsx4699 power 0.944 0.5 -> 0.972 Inexact Rounded
2731pwsx4700 power 0.0944 0.5 -> 0.307 Inexact Rounded
2732pwsx4701 power 0.945 0.5 -> 0.972 Inexact Rounded
2733pwsx4702 power 0.0945 0.5 -> 0.307 Inexact Rounded
2734pwsx4703 power 0.946 0.5 -> 0.973 Inexact Rounded
2735pwsx4704 power 0.0946 0.5 -> 0.308 Inexact Rounded
2736pwsx4705 power 0.947 0.5 -> 0.973 Inexact Rounded
2737pwsx4706 power 0.0947 0.5 -> 0.308 Inexact Rounded
2738pwsx4707 power 0.948 0.5 -> 0.974 Inexact Rounded
2739pwsx4708 power 0.0948 0.5 -> 0.308 Inexact Rounded
2740pwsx4709 power 0.949 0.5 -> 0.974 Inexact Rounded
2741pwsx4710 power 0.0949 0.5 -> 0.308 Inexact Rounded
2742pwsx4711 power 0.951 0.5 -> 0.975 Inexact Rounded
2743pwsx4712 power 0.0951 0.5 -> 0.308 Inexact Rounded
2744pwsx4713 power 0.952 0.5 -> 0.976 Inexact Rounded
2745pwsx4714 power 0.0952 0.5 -> 0.309 Inexact Rounded
2746pwsx4715 power 0.953 0.5 -> 0.976 Inexact Rounded
2747pwsx4716 power 0.0953 0.5 -> 0.309 Inexact Rounded
2748pwsx4717 power 0.954 0.5 -> 0.977 Inexact Rounded
2749pwsx4718 power 0.0954 0.5 -> 0.309 Inexact Rounded
2750pwsx4719 power 0.955 0.5 -> 0.977 Inexact Rounded
2751pwsx4720 power 0.0955 0.5 -> 0.309 Inexact Rounded
2752pwsx4721 power 0.956 0.5 -> 0.978 Inexact Rounded
2753pwsx4722 power 0.0956 0.5 -> 0.309 Inexact Rounded
2754pwsx4723 power 0.957 0.5 -> 0.978 Inexact Rounded
2755pwsx4724 power 0.0957 0.5 -> 0.309 Inexact Rounded
2756pwsx4725 power 0.958 0.5 -> 0.979 Inexact Rounded
2757pwsx4726 power 0.0958 0.5 -> 0.310 Inexact Rounded
2758pwsx4727 power 0.959 0.5 -> 0.979 Inexact Rounded
2759pwsx4728 power 0.0959 0.5 -> 0.310 Inexact Rounded
2760pwsx4729 power 0.961 0.5 -> 0.980 Inexact Rounded
2761pwsx4730 power 0.0961 0.5 -> 0.310 Inexact Rounded
2762pwsx4731 power 0.962 0.5 -> 0.981 Inexact Rounded
2763pwsx4732 power 0.0962 0.5 -> 0.310 Inexact Rounded
2764pwsx4733 power 0.963 0.5 -> 0.981 Inexact Rounded
2765pwsx4734 power 0.0963 0.5 -> 0.310 Inexact Rounded
2766pwsx4735 power 0.964 0.5 -> 0.982 Inexact Rounded
2767pwsx4736 power 0.0964 0.5 -> 0.310 Inexact Rounded
2768pwsx4737 power 0.965 0.5 -> 0.982 Inexact Rounded
2769pwsx4738 power 0.0965 0.5 -> 0.311 Inexact Rounded
2770pwsx4739 power 0.966 0.5 -> 0.983 Inexact Rounded
2771pwsx4740 power 0.0966 0.5 -> 0.311 Inexact Rounded
2772pwsx4741 power 0.967 0.5 -> 0.983 Inexact Rounded
2773pwsx4742 power 0.0967 0.5 -> 0.311 Inexact Rounded
2774pwsx4743 power 0.968 0.5 -> 0.984 Inexact Rounded
2775pwsx4744 power 0.0968 0.5 -> 0.311 Inexact Rounded
2776pwsx4745 power 0.969 0.5 -> 0.984 Inexact Rounded
2777pwsx4746 power 0.0969 0.5 -> 0.311 Inexact Rounded
2778pwsx4747 power 0.971 0.5 -> 0.985 Inexact Rounded
2779pwsx4748 power 0.0971 0.5 -> 0.312 Inexact Rounded
2780pwsx4749 power 0.972 0.5 -> 0.986 Inexact Rounded
2781pwsx4750 power 0.0972 0.5 -> 0.312 Inexact Rounded
2782pwsx4751 power 0.973 0.5 -> 0.986 Inexact Rounded
2783pwsx4752 power 0.0973 0.5 -> 0.312 Inexact Rounded
2784pwsx4753 power 0.974 0.5 -> 0.987 Inexact Rounded
2785pwsx4754 power 0.0974 0.5 -> 0.312 Inexact Rounded
2786pwsx4755 power 0.975 0.5 -> 0.987 Inexact Rounded
2787pwsx4756 power 0.0975 0.5 -> 0.312 Inexact Rounded
2788pwsx4757 power 0.976 0.5 -> 0.988 Inexact Rounded
2789pwsx4758 power 0.0976 0.5 -> 0.312 Inexact Rounded
2790pwsx4759 power 0.977 0.5 -> 0.988 Inexact Rounded
2791pwsx4760 power 0.0977 0.5 -> 0.313 Inexact Rounded
2792pwsx4761 power 0.978 0.5 -> 0.989 Inexact Rounded
2793pwsx4762 power 0.0978 0.5 -> 0.313 Inexact Rounded
2794pwsx4763 power 0.979 0.5 -> 0.989 Inexact Rounded
2795pwsx4764 power 0.0979 0.5 -> 0.313 Inexact Rounded
2796pwsx4765 power 0.981 0.5 -> 0.990 Inexact Rounded
2797pwsx4766 power 0.0981 0.5 -> 0.313 Inexact Rounded
2798pwsx4767 power 0.982 0.5 -> 0.991 Inexact Rounded
2799pwsx4768 power 0.0982 0.5 -> 0.313 Inexact Rounded
2800pwsx4769 power 0.983 0.5 -> 0.991 Inexact Rounded
2801pwsx4770 power 0.0983 0.5 -> 0.314 Inexact Rounded
2802pwsx4771 power 0.984 0.5 -> 0.992 Inexact Rounded
2803pwsx4772 power 0.0984 0.5 -> 0.314 Inexact Rounded
2804pwsx4773 power 0.985 0.5 -> 0.992 Inexact Rounded
2805pwsx4774 power 0.0985 0.5 -> 0.314 Inexact Rounded
2806pwsx4775 power 0.986 0.5 -> 0.993 Inexact Rounded
2807pwsx4776 power 0.0986 0.5 -> 0.314 Inexact Rounded
2808pwsx4777 power 0.987 0.5 -> 0.993 Inexact Rounded
2809pwsx4778 power 0.0987 0.5 -> 0.314 Inexact Rounded
2810pwsx4779 power 0.988 0.5 -> 0.994 Inexact Rounded
2811pwsx4780 power 0.0988 0.5 -> 0.314 Inexact Rounded
2812pwsx4781 power 0.989 0.5 -> 0.994 Inexact Rounded
2813pwsx4782 power 0.0989 0.5 -> 0.314 Inexact Rounded
2814pwsx4783 power 0.991 0.5 -> 0.995 Inexact Rounded
2815pwsx4784 power 0.0991 0.5 -> 0.315 Inexact Rounded
2816pwsx4785 power 0.992 0.5 -> 0.996 Inexact Rounded
2817pwsx4786 power 0.0992 0.5 -> 0.315 Inexact Rounded
2818pwsx4787 power 0.993 0.5 -> 0.996 Inexact Rounded
2819pwsx4788 power 0.0993 0.5 -> 0.315 Inexact Rounded
2820pwsx4789 power 0.994 0.5 -> 0.997 Inexact Rounded
2821pwsx4790 power 0.0994 0.5 -> 0.315 Inexact Rounded
2822pwsx4791 power 0.995 0.5 -> 0.997 Inexact Rounded
2823pwsx4792 power 0.0995 0.5 -> 0.315 Inexact Rounded
2824pwsx4793 power 0.996 0.5 -> 0.998 Inexact Rounded
2825pwsx4794 power 0.0996 0.5 -> 0.316 Inexact Rounded
2826pwsx4795 power 0.997 0.5 -> 0.998 Inexact Rounded
2827pwsx4796 power 0.0997 0.5 -> 0.316 Inexact Rounded
2828pwsx4797 power 0.998 0.5 -> 0.999 Inexact Rounded
2829pwsx4798 power 0.0998 0.5 -> 0.316 Inexact Rounded
2830pwsx4799 power 0.999 0.5 -> 0.999 Inexact Rounded
2831pwsx4800 power 0.0999 0.5 -> 0.316 Inexact Rounded
2832
2833-- A group of precision 4 tests where Hull & Abrham adjustments are
2834-- needed in some cases (both up and down) [see Hull1985b]
2835rounding: half_even
2836maxExponent: 999
2837minexponent: -999
2838precision: 4
2839pwsx5001 power 0.0118 0.5 -> 0.1086 Inexact Rounded
2840pwsx5002 power 0.119 0.5 -> 0.3450 Inexact Rounded
2841pwsx5003 power 0.0119 0.5 -> 0.1091 Inexact Rounded
2842pwsx5004 power 0.121 0.5 -> 0.3479 Inexact Rounded
2843pwsx5005 power 0.0121 0.5 -> 0.1100 Inexact Rounded
2844pwsx5006 power 0.122 0.5 -> 0.3493 Inexact Rounded
2845pwsx5007 power 0.0122 0.5 -> 0.1105 Inexact Rounded
2846pwsx5008 power 0.123 0.5 -> 0.3507 Inexact Rounded
2847pwsx5009 power 0.494 0.5 -> 0.7029 Inexact Rounded
2848pwsx5010 power 0.0669 0.5 -> 0.2587 Inexact Rounded
2849pwsx5011 power 0.9558 0.5 -> 0.9777 Inexact Rounded
2850pwsx5012 power 0.9348 0.5 -> 0.9669 Inexact Rounded
2851pwsx5013 power 0.9345 0.5 -> 0.9667 Inexact Rounded
2852pwsx5014 power 0.09345 0.5 -> 0.3057 Inexact Rounded
2853pwsx5015 power 0.9346 0.5 -> 0.9667 Inexact Rounded
2854pwsx5016 power 0.09346 0.5 -> 0.3057 Inexact Rounded
2855pwsx5017 power 0.9347 0.5 -> 0.9668 Inexact Rounded
2856
2857-- examples from decArith
2858precision: 9
2859pwsx700 power 0 0.5 -> '0'
2860pwsx701 power -0 0.5 -> '0'
2861pwsx702 power 0.39 0.5 -> 0.624499800 Inexact Rounded
2862pwsx703 power 100 0.5 -> '10.0000000' Inexact Rounded
2863pwsx704 power 1.00 0.5 -> '1.00000000' Inexact Rounded
2864pwsx705 power 7 0.5 -> '2.64575131' Inexact Rounded
2865pwsx706 power 10 0.5 -> 3.16227766 Inexact Rounded
2866
2867-- some one-offs
2868precision: 9
2869pwsx711 power 0.1 0.5 -> 0.316227766 Inexact Rounded
2870pwsx712 power 0.2 0.5 -> 0.447213595 Inexact Rounded
2871pwsx713 power 0.3 0.5 -> 0.547722558 Inexact Rounded
2872pwsx714 power 0.4 0.5 -> 0.632455532 Inexact Rounded
2873pwsx715 power 0.5 0.5 -> 0.707106781 Inexact Rounded
2874pwsx716 power 0.6 0.5 -> 0.774596669 Inexact Rounded
2875pwsx717 power 0.7 0.5 -> 0.836660027 Inexact Rounded
2876pwsx718 power 0.8 0.5 -> 0.894427191 Inexact Rounded
2877pwsx719 power 0.9 0.5 -> 0.948683298 Inexact Rounded
2878precision: 10 -- note no normalizatoin here
2879pwsx720 power +0.1 0.5 -> 0.3162277660 Inexact Rounded
2880precision: 11
2881pwsx721 power +0.1 0.5 -> 0.31622776602 Inexact Rounded
2882precision: 12
2883pwsx722 power +0.1 0.5 -> 0.316227766017 Inexact Rounded
2884precision: 9
2885pwsx723 power 0.39 0.5 -> 0.624499800 Inexact Rounded
2886precision: 15
2887pwsx724 power 0.39 0.5 -> 0.624499799839840 Inexact Rounded
2888
2889-- discussion cases
2890precision: 7
2891pwsx731 power 9 0.5 -> 3.000000 Inexact Rounded
2892pwsx732 power 100 0.5 -> 10.00000 Inexact Rounded
2893pwsx733 power 123 0.5 -> 11.09054 Inexact Rounded
2894pwsx734 power 144 0.5 -> 12.00000 Inexact Rounded
2895pwsx735 power 156 0.5 -> 12.49000 Inexact Rounded
2896pwsx736 power 10000 0.5 -> 100.0000 Inexact Rounded
2897
2898-- values close to overflow (if there were input rounding)
2899maxexponent: 99
2900minexponent: -99
2901precision: 5
2902pwsx760 power 9.9997E+99 0.5 -> 9.9998E+49 Inexact Rounded
2903pwsx761 power 9.9998E+99 0.5 -> 9.9999E+49 Inexact Rounded
2904pwsx762 power 9.9999E+99 0.5 -> 9.9999E+49 Inexact Rounded
2905pwsx763 power 9.99991E+99 0.5 -> 1.0000E+50 Inexact Rounded
2906pwsx764 power 9.99994E+99 0.5 -> 1.0000E+50 Inexact Rounded
2907pwsx765 power 9.99995E+99 0.5 -> 1.0000E+50 Inexact Rounded
2908pwsx766 power 9.99999E+99 0.5 -> 1.0000E+50 Inexact Rounded
2909precision: 9
2910pwsx770 power 9.9997E+99 0.5 -> 9.99985000E+49 Inexact Rounded
2911pwsx771 power 9.9998E+99 0.5 -> 9.99990000E+49 Inexact Rounded
2912pwsx772 power 9.9999E+99 0.5 -> 9.99995000E+49 Inexact Rounded
2913pwsx773 power 9.99991E+99 0.5 -> 9.99995500E+49 Inexact Rounded
2914pwsx774 power 9.99994E+99 0.5 -> 9.99997000E+49 Inexact Rounded
2915pwsx775 power 9.99995E+99 0.5 -> 9.99997500E+49 Inexact Rounded
2916pwsx776 power 9.99999E+99 0.5 -> 9.99999500E+49 Inexact Rounded
2917precision: 20
2918pwsx780 power 9.9997E+99 0.5 -> '9.9998499988749831247E+49' Inexact Rounded
2919pwsx781 power 9.9998E+99 0.5 -> '9.9998999994999949999E+49' Inexact Rounded
2920pwsx782 power 9.9999E+99 0.5 -> '9.9999499998749993750E+49' Inexact Rounded
2921pwsx783 power 9.99991E+99 0.5 -> '9.9999549998987495444E+49' Inexact Rounded
2922pwsx784 power 9.99994E+99 0.5 -> '9.9999699999549998650E+49' Inexact Rounded
2923pwsx785 power 9.99995E+99 0.5 -> '9.9999749999687499219E+49' Inexact Rounded
2924pwsx786 power 9.99999E+99 0.5 -> '9.9999949999987499994E+49' Inexact Rounded
2925
2926-- subnormals and underflows [these can only result when eMax is < digits+1]
2927-- Etiny = -(Emax + (precision-1))
2928-- start with subnormal operands and normal results
2929maxexponent: 9
2930minexponent: -9
2931precision: 9 -- Etiny=-17
2932pwsx800 power 1E-17 0.5 -> 3.16227766E-9 Inexact Rounded
2933pwsx801 power 10E-17 0.5 -> 1.00000000E-8 Inexact Rounded
2934precision: 10 -- Etiny=-18
2935pwsx802 power 10E-18 0.5 -> 3.162277660E-9 Inexact Rounded
2936pwsx803 power 1E-18 0.5 -> 1.000000000E-9 Inexact Rounded
2937
2938precision: 11 -- Etiny=-19
2939pwsx804 power 1E-19 0.5 -> 3.162277660E-10 Underflow Subnormal Inexact Rounded
2940-- The next test should be skipped for decNumber
2941pwsx805 power 10E-19 0.5 -> 1.0000000000E-9 Inexact Rounded
2942precision: 12 -- Etiny=-20
2943pwsx806 power 10E-20 0.5 -> 3.1622776602E-10 Underflow Subnormal Inexact Rounded
2944pwsx807 power 1E-20 0.5 -> 1.0000000000E-10 Underflow Subnormal Inexact Rounded
2945
2946precision: 13 -- Etiny=-21
2947pwsx808 power 1E-21 0.5 -> 3.1622776602E-11 Underflow Subnormal Inexact Rounded
2948pwsx809 power 10E-21 0.5 -> 1.00000000000E-10 Underflow Subnormal Inexact Rounded
2949precision: 14 -- Etiny=-22
2950pwsx810 power 1E-21 0.5 -> 3.16227766017E-11 Underflow Subnormal Inexact Rounded
2951pwsx811 power 10E-22 0.5 -> 3.16227766017E-11 Underflow Subnormal Inexact Rounded
2952pwsx812 power 1E-22 0.5 -> 1.00000000000E-11 Underflow Subnormal Inexact Rounded
2953
2954
2955-- special values
2956maxexponent: 999
2957minexponent: -999
2958pwsx820 power Inf 0.5 -> Infinity
2959pwsx821 power -Inf 0.5 -> NaN Invalid_operation
2960pwsx822 power NaN 0.5 -> NaN
2961pwsx823 power sNaN 0.5 -> NaN Invalid_operation
2962-- propagating NaNs
2963pwsx824 power sNaN123 0.5 -> NaN123 Invalid_operation
2964pwsx825 power -sNaN321 0.5 -> -NaN321 Invalid_operation
2965pwsx826 power NaN456 0.5 -> NaN456
2966pwsx827 power -NaN654 0.5 -> -NaN654
2967pwsx828 power NaN1 0.5 -> NaN1
2968
2969-- Null test
2970pwsx900 power # 0.5 -> NaN Invalid_operation