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